18 lines
529 B
C#
18 lines
529 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayMarketingCardActivateurlApplyResponse.
|
|
/// </summary>
|
|
public class AlipayMarketingCardActivateurlApplyResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 会员卡领卡链接(使用时需URLDecode解码)。商户获取此链接后可投放到服务窗消息、店铺二维码等。
|
|
/// </summary>
|
|
[XmlElement("apply_card_url")]
|
|
public string ApplyCardUrl { get; set; }
|
|
}
|
|
}
|