NewGaoKaoApi/PaymentSDK/AliPay/Domain/RelationCombinedVO.cs

43 lines
1.0 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>
/// RelationCombinedVO Data Structure.
/// </summary>
[Serializable]
public class RelationCombinedVO : AopObject
{
/// <summary>
/// 扩展信息
/// </summary>
[XmlElement("ext_info")]
public ExtraInfoVO ExtInfo { get; set; }
/// <summary>
/// 支付宝头像
/// </summary>
[XmlElement("head_img")]
public string HeadImg { get; set; }
/// <summary>
/// 是否支付宝双向好友
/// </summary>
[XmlElement("real_friend")]
public bool RealFriend { get; set; }
/// <summary>
/// 支付宝userid
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
/// <summary>
/// 有可能包含emoji表情业务方要注意编码
/// </summary>
[XmlElement("view_name")]
public string ViewName { get; set; }
}
}