NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditSceneprodDrawdo...

69 lines
2.3 KiB
C#
Raw Permalink 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>
/// MybankCreditSceneprodDrawdownApplyModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditSceneprodDrawdownApplyModel : AopObject
{
/// <summary>
/// 客户姓名
/// </summary>
[XmlElement("customer_name")]
public string CustomerName { get; set; }
/// <summary>
/// 网商业务订单号,64个字符以内、只能包含字母、数字、下划线需保证在外部网商端不重复
/// </summary>
[XmlElement("mybk_order_no")]
public string MybkOrderNo { get; set; }
/// <summary>
/// 操作类型: APPLY 放款申请 RETRY 修改信息后重试支付
/// </summary>
[XmlElement("operate_type")]
public string OperateType { get; set; }
/// <summary>
/// 外部平台订单号,64个字符以内、只能包含字母、数字、下划线需保证在外部平台端不重复
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 扩展参数JSON格式5000个字符以内
/// </summary>
[XmlElement("out_param")]
public string OutParam { get; set; }
/// <summary>
/// 外部请求流水号,32个字符以内、只能包含字母、数字、下划线需保证在外部平台端不重复
/// </summary>
[XmlElement("out_seq_no")]
public string OutSeqNo { get; set; }
/// <summary>
/// 支付信息明细
/// </summary>
[XmlArray("payment_detail_list")]
[XmlArrayItem("scene_prod_payment_account_info")]
public List<SceneProdPaymentAccountInfo> PaymentDetailList { get; set; }
/// <summary>
/// 外部站点比如ALIPAY支付宝站点MYBANK银行会员B2B_CNB2B中文站B2B_ENB2B国际站TAOBAO淘宝
/// </summary>
[XmlElement("site")]
public string Site { get; set; }
/// <summary>
/// 外部站点的userid该字段内容与site的内容相关
/// </summary>
[XmlElement("site_user_id")]
public string SiteUserId { get; set; }
}
}