NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataDataserviceHologr...

51 lines
2.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayDataDataserviceHolographicFactorQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataDataserviceHolographicFactorQueryModel : AopObject
{
/// <summary>
/// 参数中文名称:业务id 是否唯一:唯一 参数作用/应用场景:做幂等性控制 枚举值:无 如何获取:调用方生成传递过来 特殊说明:无
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 参数中文名称:身份证号 是否唯一:否 参数作用/应用场景:查询人脉因子和多头因子必备的用户三要素之一 枚举值:无 如何获取商户传递给上数上数传递到openapi 特殊说明:无
/// </summary>
[XmlElement("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 参数中文名称:联系人列表 是否唯一:否 参数作用/应用场景:运行模型生成人脉因子必备的联系人列表参数 枚举值:无 如何获取上数通过用户授权进行采集通讯录以及运营商报告上数传递到openapi 特殊说明:无
/// </summary>
[XmlArray("contact_info_list")]
[XmlArrayItem("holo_graphic_contact_info")]
public List<HoloGraphicContactInfo> ContactInfoList { get; set; }
/// <summary>
/// 参数中文名称:运营商特征 是否唯一:否 参数作用/应用场景:运行模型生成人脉因子必备的运营商特征参数 枚举值:无 如何获取上数通过用户授权采集运营商报告之后实时加工生成的运营商特征上数传递到openapi 特殊说明:无
/// </summary>
[XmlElement("isv_feature")]
public string IsvFeature { get; set; }
/// <summary>
/// 参数中文名称:用户手机号 是否唯一:否 参数作用/应用场景:查询人脉因子和多头因子必备的用户三要素之一 枚举值:无 如何获取商户传递给上数上数传递到openapi 特殊说明:无
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 参数中文名称:用户姓名 是否唯一:否 参数作用/应用场景:查询人脉因子和多头因子必备的用户三要素之一 枚举值:无 如何获取商户传递给上数上数传递到openapi 特殊说明:无
/// </summary>
[XmlElement("user_name")]
public string UserName { get; set; }
}
}