1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayEbppSubscribeUploadResponse : AopResponse
- {
-
-
-
- [XmlElement("charge_inst")]
- public string ChargeInst { get; set; }
-
-
-
- [XmlElement("order_type")]
- public string OrderType { get; set; }
-
-
-
- [XmlElement("sub_order_type")]
- public string SubOrderType { get; set; }
- }
- }
|