using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserVirtualcardSignEffectModel Data Structure. /// [Serializable] public class AlipayUserVirtualcardSignEffectModel : AopObject { /// /// hex格式表示的虚拟卡数据,卡数据将在虚拟卡二维码中透传。 /// [XmlElement("card_data")] public string CardData { get; set; } /// /// 商户定义的卡号,card_type+card_no要控制唯一性 /// [XmlElement("card_no")] public string CardNo { get; set; } /// /// 卡类型,由支付宝指定。目前每个商户都有自己的卡类型,一家商户还可能有多个卡类型 /// [XmlElement("card_type")] public string CardType { get; set; } /// /// 表示虚拟卡是否可用 /// [XmlElement("disabled")] public string Disabled { get; set; } /// /// 当虚拟卡不可用时,提示用户不可用原因 /// [XmlElement("disabled_tips")] public string DisabledTips { get; set; } /// /// 卡不可用时引导用户的链接 /// [XmlElement("disabled_url")] public string DisabledUrl { get; set; } /// /// json格式字符串,存放扩展信息。 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 支付宝用户id /// [XmlElement("user_id")] public string UserId { get; set; } } }