using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayPcreditLoanApplyCreateModel Data Structure.
///
[Serializable]
public class AlipayPcreditLoanApplyCreateModel : AopObject
{
///
/// 申贷金额,单位为元
///
[JsonProperty("apply_amt")]
public string ApplyAmt { get; set; }
///
/// 用户身份证后4位
///
[JsonProperty("cert_no")]
public string CertNo { get; set; }
///
/// 用户姓名
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// 商户订单号
///
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 商户贴息率,0~1的小数
///
[JsonProperty("ratio")]
public long Ratio { get; set; }
///
/// 场景码
///
[JsonProperty("scene")]
public string Scene { get; set; }
}
}