using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayEbppOweBillGetResponse. /// public class AlipayEbppOweBillGetResponse : AopResponse { /// /// 地址 /// [XmlElement("address")] public string Address { get; set; } /// /// 渠道,记录该笔流水的来源,例如无线WAP,主站 /// [XmlElement("agent_channel")] public string AgentChannel { get; set; } /// /// 用户卡号 /// [XmlElement("alipay_user_id")] public string AlipayUserId { get; set; } /// /// 欠费金额,以分为单位 /// [XmlElement("bill_amount")] public string BillAmount { get; set; } /// /// 账期 /// [XmlElement("bill_date")] public string BillDate { get; set; } /// /// 户号 /// [XmlElement("bill_key")] public string BillKey { get; set; } /// /// 出账机构 /// [XmlElement("charge_inst")] public string ChargeInst { get; set; } /// /// 城市 /// [XmlElement("city")] public string City { get; set; } /// /// 2 /// [XmlElement("create_type")] public string CreateType { get; set; } /// /// 到期日 /// [XmlElement("due_date")] public string DueDate { get; set; } /// /// 关联的账单流水id /// [XmlElement("ebppcore_id")] public string EbppcoreId { get; set; } /// /// 该条欠费单的有效日期 /// [XmlElement("expiry_date")] public string ExpiryDate { get; set; } /// /// 扩展属性 /// [XmlElement("extend_field")] public string ExtendField { get; set; } /// /// 以分为单位 /// [XmlElement("fine_amount")] public string FineAmount { get; set; } /// /// 创建时间 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 修改时间 /// [XmlElement("gmt_modified")] public string GmtModified { get; set; } /// /// 业务类型 /// [XmlElement("order_type")] public string OrderType { get; set; } /// /// 欠费单id /// [XmlElement("owe_bill_id")] public string OweBillId { get; set; } /// /// 户名 /// [XmlElement("owner_name")] public string OwnerName { get; set; } /// /// 省份 /// [XmlElement("province")] public string Province { get; set; } /// /// 欠费单所在区 /// [XmlElement("region")] public string Region { get; set; } /// /// 单据状态,I初始,P处理中。S 成功 F 失败 C 已删除 B 被别人缴纳过了 /// [XmlElement("status")] public string Status { get; set; } /// /// 子业务类型 /// [XmlElement("sub_order_type")] public string SubOrderType { get; set; } } }