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.

18 lines
500 B
C#

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