AlipayTrustUserStatusGetResponse.cs 1000 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Aop.Api.Response
  4. {
  5. /// <summary>
  6. /// AlipayTrustUserStatusGetResponse.
  7. /// </summary>
  8. public class AlipayTrustUserStatusGetResponse : AopResponse
  9. {
  10. /// <summary>
  11. /// 短信授权时间
  12. /// </summary>
  13. [XmlElement("auth_time")]
  14. public string AuthTime { get; set; }
  15. /// <summary>
  16. /// 短信授权过期失效时间
  17. /// </summary>
  18. [XmlElement("over_time")]
  19. public string OverTime { get; set; }
  20. /// <summary>
  21. /// 短信授权发起时间
  22. /// </summary>
  23. [XmlElement("request_time")]
  24. public string RequestTime { get; set; }
  25. /// <summary>
  26. /// 1:暂未发起授权;2:已发起授权,但暂未授权;3:授权已到期失效;4:已授权,且有效;5:授权码已失效
  27. /// </summary>
  28. [XmlElement("status")]
  29. public string Status { get; set; }
  30. }
  31. }