AlipayEbppSubscribeUploadResponse.cs 758 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Aop.Api.Response
  4. {
  5. /// <summary>
  6. /// AlipayEbppSubscribeUploadResponse.
  7. /// </summary>
  8. public class AlipayEbppSubscribeUploadResponse : AopResponse
  9. {
  10. /// <summary>
  11. /// 出账机构简称如杭州水务HZWATEr
  12. /// </summary>
  13. [XmlElement("charge_inst")]
  14. public string ChargeInst { get; set; }
  15. /// <summary>
  16. /// 业务类型,如缴费JF
  17. /// </summary>
  18. [XmlElement("order_type")]
  19. public string OrderType { get; set; }
  20. /// <summary>
  21. /// 子业务类型如水费WATER
  22. /// </summary>
  23. [XmlElement("sub_order_type")]
  24. public string SubOrderType { get; set; }
  25. }
  26. }