NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMemberDataOutuserinfo...

61 lines
1.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiMemberDataOutuserinfoModifyModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMemberDataOutuserinfoModifyModel : AopObject
{
/// <summary>
/// http://avatar_url.com
/// </summary>
[XmlElement("avatar_url")]
public string AvatarUrl { get; set; }
/// <summary>
/// 城市
/// </summary>
[XmlElement("city")]
public string City { get; set; }
/// <summary>
/// 国家
/// </summary>
[XmlElement("country")]
public string Country { get; set; }
/// <summary>
/// 1 男2 女
/// </summary>
[XmlElement("gender")]
public string Gender { get; set; }
/// <summary>
/// 微信昵称
/// </summary>
[XmlElement("nick_name")]
public string NickName { get; set; }
/// <summary>
/// 支付宝用户Id即匿名用户Id
/// </summary>
[XmlElement("out_user_id")]
public string OutUserId { get; set; }
/// <summary>
/// 用户手机号
/// </summary>
[XmlElement("phone_number")]
public string PhoneNumber { get; set; }
/// <summary>
/// 省份
/// </summary>
[XmlElement("province")]
public string Province { get; set; }
}
}