using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipaySecurityRiskVerifyidentityInitializeModel Data Structure. /// [Serializable] public class AlipaySecurityRiskVerifyidentityInitializeModel : AopObject { /// /// 用户证件号,当前支持身份证号 /// [XmlElement("account_id")] public string AccountId { get; set; } /// /// 用户姓名 /// [XmlElement("account_name")] public string AccountName { get; set; } /// /// 用户证件类型,需传入英文枚举常量,当前支持:CERT(大陆身份证) /// [XmlElement("account_type")] public string AccountType { get; set; } /// /// 核验后回调业务url /// [XmlElement("biz_callback_url")] public string BizCallbackUrl { get; set; } /// /// 接入业务方业务唯一性id /// [XmlElement("biz_id")] public string BizId { get; set; } /// /// 附加业务信息,Json结构 /// [XmlElement("biz_params")] public string BizParams { get; set; } /// /// 核验服务名称,同时请求多种服务用“|”连接,SMS:短信,FACE:人脸 /// [XmlElement("product_code")] public string ProductCode { get; set; } /// /// 身份核验场景CODE,商务谈判基础上,由支付宝来分配。 /// [XmlElement("scene_code")] public string SceneCode { get; set; } } }