Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AliTrustCert.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

42 lines
992 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AliTrustCert Data Structure.
/// </summary>
[Serializable]
public class AliTrustCert : AopObject
{
/// <summary>
/// 点击信用认证图标之后的跳转链接
/// </summary>
[JsonProperty("forward_url")]
public string ForwardUrl { get; set; }
/// <summary>
/// 通过信用认证的图标链接
/// </summary>
[JsonProperty("icon_url")]
public string IconUrl { get; set; }
/// <summary>
/// 当通过信用认证时,取值为"T";否则为"F".
/// </summary>
[JsonProperty("is_certified")]
public string IsCertified { get; set; }
/// <summary>
/// 芝麻认证等级取值为1,2,3
/// </summary>
[JsonProperty("level")]
public string Level { get; set; }
/// <summary>
/// 当用户未通过芝麻认证时给出的原因提示
/// </summary>
[JsonProperty("message")]
public string Message { get; set; }
}
}