You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.1 KiB
C#

9 months ago
using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayAssetAccountBindResponse.
/// </summary>
public class AlipayAssetAccountBindResponse : AopResponse
{
/// <summary>
/// 用户的支付宝账号对应的支付宝唯一用户标识,不可变更。
/// </summary>
[XmlElement("alipay_user_id")]
public string AlipayUserId { get; set; }
/// <summary>
/// 使用该app提供用户信息的商户可以和app相同。
/// </summary>
[XmlElement("provider_id")]
public string ProviderId { get; set; }
/// <summary>
/// 用户在商户网站的会员标识。商户需确保其唯一性,不可变更。
/// </summary>
[XmlElement("provider_user_id")]
public string ProviderUserId { get; set; }
/// <summary>
/// 用户在商户网站的会员名(登录号或昵称)。
/// </summary>
[XmlElement("provider_user_name")]
public string ProviderUserName { get; set; }
}
}