16 lines
383 B
C#
16 lines
383 B
C#
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Response
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// ZhimaCustomerCertificationInitializeResponse.
|
||
|
|
/// </summary>
|
||
|
|
public class ZhimaCustomerCertificationInitializeResponse : AopResponse
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 本次认证的唯一标识,商户需要记录
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("biz_no")]
|
||
|
|
public string BizNo { get; set; }
|
||
|
|
}
|
||
|
|
}
|