75 lines
2.3 KiB
C#
75 lines
2.3 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// MybankCreditLoantradePayAssetConsultModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class MybankCreditLoantradePayAssetConsultModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 支付宝合作伙伴id
|
||
/// </summary>
|
||
[XmlElement("alipay_partner_id")]
|
||
public string AlipayPartnerId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 申请金额,最小1元钱
|
||
/// </summary>
|
||
[XmlElement("apply_amt")]
|
||
public CreditPayMoneyVO ApplyAmt { get; set; }
|
||
|
||
/// <summary>
|
||
/// 业务场景
|
||
/// </summary>
|
||
[XmlElement("biz_scene")]
|
||
public string BizScene { get; set; }
|
||
|
||
/// <summary>
|
||
/// 咨询资产类型,LOAN_INSTALLMENT或者BILL
|
||
/// </summary>
|
||
[XmlArray("credit_asset_types")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> CreditAssetTypes { get; set; }
|
||
|
||
/// <summary>
|
||
/// 交易订单信息,JSON数组格式的***字符串***,用于描述交易订单详情。再次强调,该字段是字符串形式,用于当做订单扩展使用。序列化整个请求的时候,这个字段一定要是字符串类型,只不过该字段产生,需要将订单List额外进行一次json序列化
|
||
/// </summary>
|
||
[XmlElement("order_infos")]
|
||
public string OrderInfos { get; set; }
|
||
|
||
/// <summary>
|
||
/// 收单产品码
|
||
/// </summary>
|
||
[XmlElement("payment_sale_pd_code")]
|
||
public string PaymentSalePdCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 平台类型
|
||
/// </summary>
|
||
[XmlElement("platform_type")]
|
||
public string PlatformType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 子业务类型
|
||
/// </summary>
|
||
[XmlElement("sub_biz_scene")]
|
||
public string SubBizScene { get; set; }
|
||
|
||
/// <summary>
|
||
/// 子平台类型
|
||
/// </summary>
|
||
[XmlElement("sub_platform_type")]
|
||
public string SubPlatformType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 咨询用户信息
|
||
/// </summary>
|
||
[XmlElement("user")]
|
||
public CreditPayUserVO User { get; set; }
|
||
}
|
||
}
|