接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
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; }
}
}