using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayMarketingSharetokenDecodeModel Data Structure. /// [Serializable] public class AlipayMarketingSharetokenDecodeModel : AopObject { /// /// 码类型,可空,默认为吱口令类型『share_code』 /// [XmlElement("code_type")] public string CodeType { get; set; } /// /// 扩展属性,key-value json串 /// [XmlElement("ext_data")] public string ExtData { get; set; } /// /// 8位吱口令token /// [XmlElement("token")] public string Token { get; set; } } }