AlipayPlatformAppAddResponse.cs 867 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Aop.Api.Response
  4. {
  5. /// <summary>
  6. /// AlipayPlatformAppAddResponse.
  7. /// </summary>
  8. public class AlipayPlatformAppAddResponse : AopResponse
  9. {
  10. /// <summary>
  11. /// AOP应用app_id
  12. /// </summary>
  13. [XmlElement("aop_app_id")]
  14. public string AopAppId { get; set; }
  15. /// <summary>
  16. /// AOP应用状态
  17. /// </summary>
  18. [XmlElement("aop_app_status")]
  19. public string AopAppStatus { get; set; }
  20. /// <summary>
  21. /// AOP应用审核意见
  22. /// </summary>
  23. [XmlElement("aop_audit_opinion")]
  24. public string AopAuditOpinion { get; set; }
  25. /// <summary>
  26. /// 外部应用ID
  27. /// </summary>
  28. [XmlElement("out_app_id")]
  29. public string OutAppId { get; set; }
  30. }
  31. }