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