NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayFundTransBatchCreates...

61 lines
2.4 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayFundTransBatchCreatesinglebatchModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundTransBatchCreatesinglebatchModel : AopObject
{
/// <summary>
/// 批次的创建说明如收款理由等。注字符长度不能超过24字符串中不能含有特殊字符比如emoji等
/// </summary>
[XmlElement("batch_memo")]
public string BatchMemo { get; set; }
/// <summary>
/// 业务类型,目前支持下面三种业务类型, (AA收款 :aa, 江湖救急 :support , 活动收款:general)
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 创建者id该id为用户的支付宝id需要调用方自己进行转换传入
/// </summary>
[XmlElement("create_user_id")]
public string CreateUserId { get; set; }
/// <summary>
/// 扩展参数,目前淘系会传商品类目过来key=categoryNo。注长度不可超过100; 数据格式需要为map<String,String>的json串
/// </summary>
[XmlElement("ext_param")]
public string ExtParam { get; set; }
/// <summary>
/// 单笔金额,单位为元。注: AA收款为平均后的金额活动收款为单笔金额 江湖救急不填写
/// </summary>
[XmlElement("pay_amount_single")]
public string PayAmountSingle { get; set; }
/// <summary>
/// 总金额单位为元。注AA为收款总金额活动收款为份数和单笔金额的积江湖救急为目标金额
/// </summary>
[XmlElement("pay_amount_total")]
public string PayAmountTotal { get; set; }
/// <summary>
/// 实际要创建的笔数。注AA包括自己这里为show_items_total-1活动收款为填写的份数;江湖救急不填写
/// </summary>
[XmlElement("real_items_total")]
public string RealItemsTotal { get; set; }
/// <summary>
/// 显示的总笔数。注AA收款为选择的人数活动收款为填写的份数江湖救急不填写
/// </summary>
[XmlElement("show_items_total")]
public string ShowItemsTotal { get; set; }
}
}