NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoEprintOrderCancelM...

43 lines
1.0 KiB
C#
Raw 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>
/// AlipayEcoEprintOrderCancelModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoEprintOrderCancelModel : AopObject
{
/// <summary>
/// 应用ID
/// </summary>
[XmlElement("client_id")]
public string ClientId { get; set; }
/// <summary>
/// 应用Secret
/// </summary>
[XmlElement("client_secret")]
public string ClientSecret { get; set; }
/// <summary>
/// 应用访问凭证
/// </summary>
[XmlElement("eprint_token")]
public string EprintToken { get; set; }
/// <summary>
/// 终端号
/// </summary>
[XmlElement("machine_code")]
public string MachineCode { get; set; }
/// <summary>
/// 待取消订单Id云平台端订单Id
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
}
}