using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEcoPrinterStatusNotifyModel Data Structure.
///
[Serializable]
public class AlipayEcoPrinterStatusNotifyModel : 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; }
///
/// 打印机终端状态 1=在线 2=缺纸 0=离线
///
[XmlElement("online")]
public long Online { get; set; }
///
/// 回调时间
///
[XmlElement("push_time")]
public string PushTime { get; set; }
}
}