Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayUserAgreementSignConfirmModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

30 lines
881 B
C#
Raw Permalink 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>
/// AlipayUserAgreementSignConfirmModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserAgreementSignConfirmModel : AopObject
{
/// <summary>
/// 代扣签约申请时支付宝返回的签约申请token商户可利用该值完成签约的确认。
/// </summary>
[JsonProperty("apply_token")]
public string ApplyToken { get; set; }
/// <summary>
/// 支付宝用户的身份证后4位。 签约确认接口目前只有国际极简会校验身份证后4位。
/// </summary>
[JsonProperty("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 能唯一确认用户身份的标识号,如:手机验证码等。
/// </summary>
[JsonProperty("confirm_no")]
public string ConfirmNo { get; set; }
}
}