NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingSharetokenDe...

31 lines
786 B
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>
/// AlipayMarketingSharetokenDecodeModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingSharetokenDecodeModel : AopObject
{
/// <summary>
/// 码类型可空默认为吱口令类型『share_code』
/// </summary>
[XmlElement("code_type")]
public string CodeType { get; set; }
/// <summary>
/// 扩展属性key-value json串
/// </summary>
[XmlElement("ext_data")]
public string ExtData { get; set; }
/// <summary>
/// 8位吱口令token
/// </summary>
[XmlElement("token")]
public string Token { get; set; }
}
}