using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoEprintActionNotifyModel Data Structure. /// [Serializable] public class AlipayEcoEprintActionNotifyModel : AopObject { /// /// 签名 /// [XmlElement("eprint_sign")] public string EprintSign { get; set; } /// /// 终端号 /// [XmlElement("machine_code")] public string MachineCode { get; set; } /// /// 授权类型:0=自有应用授权、1=开放应用授权 /// [XmlElement("oauth_type")] public long OauthType { get; set; } /// /// 云平台订单ID /// [XmlElement("order_id")] public string OrderId { get; set; } /// /// 回调时间 /// [XmlElement("push_time")] public string PushTime { get; set; } /// /// 按键行为 0=拒单 1=接单 /// [XmlElement("state")] public long State { get; set; } } }