NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingCardActivate...

37 lines
1.4 KiB
C#
Raw Permalink Blame History

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.Domain
{
/// <summary>
/// AlipayMarketingCardActivateurlApplyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingCardActivateurlApplyModel : AopObject
{
/// <summary>
/// 会员卡开卡表单提交后回调地址。 1.该地址不可带参数如需回传参数可设置out_string入参。
/// </summary>
[XmlElement("callback")]
public string Callback { get; set; }
/// <summary>
/// 需要关注的生活号AppId。若需要在领卡页面展示“关注生活号”提示需开通生活号并绑定会员卡。生活号快速接入详见https://doc.open.alipay.com/docs/doc.htm?treeId=193&articleId=105933&docType=1
/// </summary>
[XmlElement("follow_app_id")]
public string FollowAppId { get; set; }
/// <summary>
/// 扩展信息,会员领卡完成后将此参数原样带回商户页面。
/// </summary>
[XmlElement("out_string")]
public string OutString { get; set; }
/// <summary>
/// 会员卡模板id。使用会员卡模板创建接口(alipay.marketing.card.template.create)返回的结果
/// </summary>
[XmlElement("template_id")]
public string TemplateId { get; set; }
}
}