初始化仓库

This commit is contained in:
Yao
2025-08-14 16:44:56 +08:00
commit 45b8c90ad8
5157 changed files with 664203 additions and 0 deletions

View File

@ -0,0 +1,21 @@
// This file is auto-generated, don't edit it. Thanks.
using System;
using System.Collections.Generic;
using System.IO;
using Tea;
namespace Alipay.EasySDK.Member.Identification.Models
{
public class AlipayUserCertifyOpenCertifyResponse : TeaModel {
/// <summary>
/// 认证服务请求地址
/// </summary>
[NameInMap("body")]
[Validation(Required=true)]
public string Body { get; set; }
}
}

View File

@ -0,0 +1,41 @@
// This file is auto-generated, don't edit it. Thanks.
using System;
using System.Collections.Generic;
using System.IO;
using Tea;
namespace Alipay.EasySDK.Member.Identification.Models
{
public class AlipayUserCertifyOpenInitializeResponse : TeaModel {
/// <summary>
/// 响应原始字符串
/// </summary>
[NameInMap("http_body")]
[Validation(Required=true)]
public string HttpBody { get; set; }
[NameInMap("code")]
[Validation(Required=true)]
public string Code { get; set; }
[NameInMap("msg")]
[Validation(Required=true)]
public string Msg { get; set; }
[NameInMap("sub_code")]
[Validation(Required=true)]
public string SubCode { get; set; }
[NameInMap("sub_msg")]
[Validation(Required=true)]
public string SubMsg { get; set; }
[NameInMap("certify_id")]
[Validation(Required=true)]
public string CertifyId { get; set; }
}
}

View File

@ -0,0 +1,49 @@
// This file is auto-generated, don't edit it. Thanks.
using System;
using System.Collections.Generic;
using System.IO;
using Tea;
namespace Alipay.EasySDK.Member.Identification.Models
{
public class AlipayUserCertifyOpenQueryResponse : TeaModel {
/// <summary>
/// 响应原始字符串
/// </summary>
[NameInMap("http_body")]
[Validation(Required=true)]
public string HttpBody { get; set; }
[NameInMap("code")]
[Validation(Required=true)]
public string Code { get; set; }
[NameInMap("msg")]
[Validation(Required=true)]
public string Msg { get; set; }
[NameInMap("sub_code")]
[Validation(Required=true)]
public string SubCode { get; set; }
[NameInMap("sub_msg")]
[Validation(Required=true)]
public string SubMsg { get; set; }
[NameInMap("passed")]
[Validation(Required=true)]
public string Passed { get; set; }
[NameInMap("identity_info")]
[Validation(Required=true)]
public string IdentityInfo { get; set; }
[NameInMap("material_info")]
[Validation(Required=true)]
public string MaterialInfo { get; set; }
}
}

View File

@ -0,0 +1,30 @@
// This file is auto-generated, don't edit it. Thanks.
using System;
using System.Collections.Generic;
using System.IO;
using Tea;
namespace Alipay.EasySDK.Member.Identification.Models
{
public class IdentityParam : TeaModel {
[NameInMap("identity_type")]
[Validation(Required=true)]
public string IdentityType { get; set; }
[NameInMap("cert_type")]
[Validation(Required=true)]
public string CertType { get; set; }
[NameInMap("cert_name")]
[Validation(Required=true)]
public string CertName { get; set; }
[NameInMap("cert_no")]
[Validation(Required=true)]
public string CertNo { get; set; }
}
}

View File

@ -0,0 +1,18 @@
// This file is auto-generated, don't edit it. Thanks.
using System;
using System.Collections.Generic;
using System.IO;
using Tea;
namespace Alipay.EasySDK.Member.Identification.Models
{
public class MerchantConfig : TeaModel {
[NameInMap("return_url")]
[Validation(Required=true)]
public string ReturnUrl { get; set; }
}
}