AlipayAssetAccountGetResponse.cs 509 B

1234567891011121314151617181920
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. using Aop.Api.Domain;
  5. namespace Aop.Api.Response
  6. {
  7. /// <summary>
  8. /// AlipayAssetAccountGetResponse.
  9. /// </summary>
  10. public class AlipayAssetAccountGetResponse : AopResponse
  11. {
  12. /// <summary>
  13. /// 账户绑定关系列表
  14. /// </summary>
  15. [XmlArray("asset_list")]
  16. [XmlArrayItem("asset_account_result")]
  17. public List<AssetAccountResult> AssetList { get; set; }
  18. }
  19. }