using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayUserAntidVirtualQueryModel Data Structure.
///
[Serializable]
public class AlipayUserAntidVirtualQueryModel : AopObject
{
///
/// 业务域场景,由提供方分配
///
[XmlElement("biz_scene")]
public string BizScene { get; set; }
///
/// 识别因子内容,json格式内容。跟identification_factor_type一一对应。MOBILE_BIZ类型对应的key为mobile,bizType,bizId; THIRD_PARTY类型对应的key为partnerId,userId,bizId; CERTIFICATE类型对应的key为certType,certNo,certName。 会以不同识别因子类型的识别内容作为唯一条件查询虚拟账户AntID
///
[XmlElement("identification_factor_content")]
public string IdentificationFactorContent { get; set; }
///
/// 识别因子类型,有3种;分别为手机场景识别因子 MOBILE_BIZ,第三方识别因子 THIRD_PARTY和证件识别因子 CERTIFICATE
///
[XmlElement("identification_factor_type")]
public string IdentificationFactorType { get; set; }
}
}