using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayDataAiserviceJunengLoanQueryModel Data Structure. /// [Serializable] public class AlipayDataAiserviceJunengLoanQueryModel : AopObject { /// /// 额外的信息,以 json 字符串的方式组织 /// [JsonProperty("extension_info")] public string ExtensionInfo { get; set; } /// /// 借款人身份证号的md5 /// [JsonProperty("hashed_cert_no")] public string HashedCertNo { get; set; } /// /// 机构代码,区别调用的外部机构 /// [JsonProperty("institution_uuid")] public string InstitutionUuid { get; set; } /// /// 单次请求的 uuid /// [JsonProperty("request_uuid")] public string RequestUuid { get; set; } /// /// 用户属性,包含隐私保护数据和原始数据。 /// [JsonProperty("user_feature")] public string UserFeature { get; set; } } }