using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEcoEprintOrderCancelModel Data Structure.
///
[Serializable]
public class AlipayEcoEprintOrderCancelModel : AopObject
{
///
/// 应用ID
///
[XmlElement("client_id")]
public string ClientId { get; set; }
///
/// 应用Secret
///
[XmlElement("client_secret")]
public string ClientSecret { get; set; }
///
/// 应用访问凭证
///
[XmlElement("eprint_token")]
public string EprintToken { get; set; }
///
/// 终端号
///
[XmlElement("machine_code")]
public string MachineCode { get; set; }
///
/// 待取消订单Id,云平台端订单Id
///
[XmlElement("order_id")]
public string OrderId { get; set; }
}
}