NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayFundTransMergePrecrea...

57 lines
1.8 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>
/// AlipayFundTransMergePrecreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundTransMergePrecreateModel : AopObject
{
/// <summary>
/// 业务场景。 DINGTALK_MERCHANT_PAY钉钉企业付款
/// </summary>
[XmlElement("biz_scene")]
public string BizScene { get; set; }
/// <summary>
/// 转账请求的扩展参数,具体请与支付宝工程师联系。 merchant_op_id商户所属的操作员id
/// </summary>
[XmlElement("business_params")]
public string BusinessParams { get; set; }
/// <summary>
/// 用于收银台展示标题,必填
/// </summary>
[XmlElement("order_title")]
public string OrderTitle { get; set; }
/// <summary>
/// 付款方信息。如果指定了,在某些场景下以指定的付款方为准,在某些场景下会做一致性校验。
/// </summary>
[XmlElement("payer_info")]
public Participant PayerInfo { get; set; }
/// <summary>
/// 合并付款的业务产品码
/// </summary>
[XmlElement("product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 绝对超时时间格式为yyyy-MM-dd HH:mm。
/// </summary>
[XmlElement("time_expire")]
public string TimeExpire { get; set; }
/// <summary>
/// 转账订单列表最多支持10条。
/// </summary>
[XmlArray("trans_order_list")]
[XmlArrayItem("trans_order_detail")]
public List<TransOrderDetail> TransOrderList { get; set; }
}
}