using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayPcreditLoanContractInfoQueryModel Data Structure.
///
[Serializable]
public class AlipayPcreditLoanContractInfoQueryModel : AopObject
{
///
/// 贷款申请受理单号,与外部业务单号二者不能同时为空
///
[XmlElement("apply_receipt_no")]
public string ApplyReceiptNo { get; set; }
///
/// 签署合同类型,取值{LOAN}:LOAN-贷款合同;
///
[XmlElement("contract_type")]
public string ContractType { get; set; }
///
/// 外部业务单号,与贷款申请受理单号二者不能同时为空
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 代表了一次请求,作为业务幂等性控制
///
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
}
}