18 lines
445 B
C#
18 lines
445 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// ZhimaCustomerEpCertificationCertifyModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ZhimaCustomerEpCertificationCertifyModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 一次认证的唯一标识,在完成芝麻认证初始化后可以获取
|
|
/// </summary>
|
|
[JsonProperty("biz_no")]
|
|
public string BizNo { get; set; }
|
|
}
|
|
} |