NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditLoantradePayAss...

75 lines
2.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}