NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataPrinterBindModel.cs

49 lines
1.1 KiB
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayDataPrinterBindModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataPrinterBindModel : AopObject
{
/// <summary>
/// 应用token
/// </summary>
[XmlElement("access_token")]
public string AccessToken { get; set; }
/// <summary>
/// 应用id
/// </summary>
[XmlElement("client_id")]
public string ClientId { get; set; }
/// <summary>
/// 应用秘钥
/// </summary>
[XmlElement("client_secret")]
public string ClientSecret { get; set; }
/// <summary>
/// 设备名
/// </summary>
[XmlElement("device_name")]
public string DeviceName { get; set; }
/// <summary>
/// 设备sn号
/// </summary>
[XmlElement("device_sn")]
public string DeviceSn { get; set; }
/// <summary>
/// 设备秘钥
/// </summary>
[XmlElement("secret_key")]
public string SecretKey { get; set; }
}
}