You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
967 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMarketingCampaignCashCreateResponse.
/// </summary>
public class AlipayMarketingCampaignCashCreateResponse : AopResponse
{
/// <summary>
/// 生成的现金红包活动号
/// </summary>
[XmlElement("crowd_no")]
public string CrowdNo { get; set; }
/// <summary>
/// 原始活动号,商户排查问题时提供的活动依据
/// </summary>
[XmlElement("origin_crowd_no")]
public string OriginCrowdNo { get; set; }
/// <summary>
/// 活动创建后的付款链接返回的是urlencode编码后的字符串。需要先进行urldecode解码然后在浏览器中进行访问会先进行支付宝登录引导然后商户进行付款。
/// </summary>
[XmlElement("pay_url")]
public string PayUrl { get; set; }
}
}