AlipayAssetAccountBindResponse.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Aop.Api.Response
  4. {
  5. /// <summary>
  6. /// AlipayAssetAccountBindResponse.
  7. /// </summary>
  8. public class AlipayAssetAccountBindResponse : AopResponse
  9. {
  10. /// <summary>
  11. /// 用户的支付宝账号对应的支付宝唯一用户标识,不可变更。
  12. /// </summary>
  13. [XmlElement("alipay_user_id")]
  14. public string AlipayUserId { get; set; }
  15. /// <summary>
  16. /// 使用该app提供用户信息的商户,可以和app相同。
  17. /// </summary>
  18. [XmlElement("provider_id")]
  19. public string ProviderId { get; set; }
  20. /// <summary>
  21. /// 用户在商户网站的会员标识。商户需确保其唯一性,不可变更。
  22. /// </summary>
  23. [XmlElement("provider_user_id")]
  24. public string ProviderUserId { get; set; }
  25. /// <summary>
  26. /// 用户在商户网站的会员名(登录号或昵称)。
  27. /// </summary>
  28. [XmlElement("provider_user_name")]
  29. public string ProviderUserName { get; set; }
  30. }
  31. }