using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AliTrustCert Data Structure.
///
[Serializable]
public class AliTrustCert : AopObject
{
///
/// 点击信用认证图标之后的跳转链接
///
[JsonProperty("forward_url")]
public string ForwardUrl { get; set; }
///
/// 通过信用认证的图标链接
///
[JsonProperty("icon_url")]
public string IconUrl { get; set; }
///
/// 当通过信用认证时,取值为"T";否则为"F".
///
[JsonProperty("is_certified")]
public string IsCertified { get; set; }
///
/// 芝麻认证等级,取值为1,2,3
///
[JsonProperty("level")]
public string Level { get; set; }
///
/// 当用户未通过芝麻认证时给出的原因提示
///
[JsonProperty("message")]
public string Message { get; set; }
}
}