using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// RelationCombinedVO Data Structure.
///
[Serializable]
public class RelationCombinedVO : AopObject
{
///
/// 扩展信息
///
[JsonProperty("ext_info")]
public ExtraInfoVO ExtInfo { get; set; }
///
/// 支付宝头像
///
[JsonProperty("head_img")]
public string HeadImg { get; set; }
///
/// 是否支付宝双向好友
///
[JsonProperty("real_friend")]
public bool RealFriend { get; set; }
///
/// 支付宝userid
///
[JsonProperty("user_id")]
public string UserId { get; set; }
///
/// 有可能包含emoji表情,业务方要注意编码
///
[JsonProperty("view_name")]
public string ViewName { get; set; }
}
}