using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipaySecurityRiskCustomerriskrankGetModel Data Structure.
///
[Serializable]
public class AlipaySecurityRiskCustomerriskrankGetModel : AopObject
{
///
/// 证件号码,除了场景id必填,其他几个参数不能同时为空
///
[JsonProperty("card_no")]
public string CardNo { get; set; }
///
/// 证件类型,除了场景id必填,其他几个参数不能同时为空
///
[JsonProperty("card_type")]
public string CardType { get; set; }
///
/// 手机号,除了场景id必填,其他几个参数不能同时为空
///
[JsonProperty("mobile")]
public string Mobile { get; set; }
///
/// 场景id
///
[JsonProperty("scene_id")]
public string SceneId { get; set; }
///
/// 支付宝账户id ,除了场景id必填,其他几个参数不能同时为空
///
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}