NewGaoKaoApi/PaymentSDK/AliPay/Response/MybankCreditUserInfoShareQu...

48 lines
1.2 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.Response
{
/// <summary>
/// MybankCreditUserInfoShareQueryResponse.
/// </summary>
public class MybankCreditUserInfoShareQueryResponse : AopResponse
{
/// <summary>
/// 用户头像地址
/// </summary>
[XmlElement("avatar")]
public string Avatar { get; set; }
/// <summary>
/// 城市
/// </summary>
[XmlElement("city")]
public string City { get; set; }
/// <summary>
/// 【注意】只有is_certified为T的时候才有意义否则不保证准确性. 性别F女性M男性
/// </summary>
[XmlElement("gender")]
public string Gender { get; set; }
/// <summary>
/// 用户昵称
/// </summary>
[XmlElement("nick_name")]
public string NickName { get; set; }
/// <summary>
/// 省份
/// </summary>
[XmlElement("province")]
public string Province { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}