接口文件

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,22 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayUserInfoVerifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserInfoVerifyModel : AopObject
{
/// <summary>
/// JSON字符串格式如下 { principalInfo:{ userId: "用户的userId"}, subRequests:[ {
/// type:"字段类型,支持的类型见后续说明", value:"字段值" } ] } 说明:
/// 1入参中的principalInfo信息用于指示待检查的用户目前支持userId。
/// 2subRequests为待检查的信息项会与principalInfo所指示的用户留存在支付宝的信息进行匹配数组类型支持多种字段的校验其中type为信息类型value为信息值。 3type目前支持的类型:
/// 手机mobile 姓名realName
/// </summary>
[JsonProperty("request")]
public string Request { get; set; }
}
}