AlipayTrustUserZminfoPairGetResponse.cs 761 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Aop.Api.Response
  4. {
  5. /// <summary>
  6. /// AlipayTrustUserZminfoPairGetResponse.
  7. /// </summary>
  8. public class AlipayTrustUserZminfoPairGetResponse : AopResponse
  9. {
  10. /// <summary>
  11. /// 申请者芝麻信用信息JSON串
  12. /// </summary>
  13. [XmlElement("apply_zm_info")]
  14. public string ApplyZmInfo { get; set; }
  15. /// <summary>
  16. /// 信息失效时间
  17. /// </summary>
  18. [XmlElement("expire_time")]
  19. public string ExpireTime { get; set; }
  20. /// <summary>
  21. /// 被申请者芝麻信用信息JSON串
  22. /// </summary>
  23. [XmlElement("owner_zm_info")]
  24. public string OwnerZmInfo { get; set; }
  25. }
  26. }