using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayFundTransBatchCreateorderModel Data Structure.
///
[Serializable]
public class AlipayFundTransBatchCreateorderModel : AopObject
{
///
/// 批次编号:创建批次时生成的批次号;表示这笔付款是这个批次下面的一条明细
///
[JsonProperty("batch_no")]
public string BatchNo { get; set; }
///
/// 必须是map的json串,长度限制为100
///
[JsonProperty("ext_param")]
public string ExtParam { get; set; }
///
/// 金额,单位为元
///
[JsonProperty("pay_amount")]
public string PayAmount { get; set; }
///
/// 收款方userId
///
[JsonProperty("payee_id")]
public string PayeeId { get; set; }
///
/// 付款方userId
///
[JsonProperty("payer_id")]
public string PayerId { get; set; }
///
/// token;创建批次时和批次编号一起下发的token串
///
[JsonProperty("token")]
public string Token { get; set; }
}
}