using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayEbppOweBillUploadResponse. /// public class AlipayEbppOweBillUploadResponse : AopResponse { /// /// 出账机构 /// [XmlElement("charge_inst")] public string ChargeInst { get; set; } /// /// 销账机构 /// [XmlElement("chargeoff_inst")] public string ChargeoffInst { get; set; } /// /// 业务类型 /// [XmlElement("order_type")] public string OrderType { get; set; } /// /// 子业务类型 /// [XmlElement("sub_order_type")] public string SubOrderType { get; set; } } }