using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayTradeCreditApplyQueryModel Data Structure.
///
[Serializable]
public class AlipayTradeCreditApplyQueryModel : AopObject
{
///
/// 本次授信拆分申请时的被授信方授信来源
///
[XmlElement("buyer_credit_source")]
public string BuyerCreditSource { get; set; }
///
/// 本次授信拆分申请时的被授信方的userId
///
[XmlElement("buyer_user_id")]
public string BuyerUserId { get; set; }
///
/// 标识本次授信拆分的业务场景,具体的值由支付宝定义
///
[XmlElement("credit_scene")]
public string CreditScene { get; set; }
///
/// 本次授信拆分的操作单号
///
[XmlElement("grant_operation_no")]
public string GrantOperationNo { get; set; }
///
/// 本次授信拆分申请时的外部请求号
///
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
}
}