Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayUserInfoVerifyModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

22 lines
1008 B
C#
Raw 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>
/// 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; }
}
}