using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayFundBatchCreateModel Data Structure.
///
[Serializable]
public class AlipayFundBatchCreateModel : AopObject
{
///
/// 业务场景。不同场景值不同,具体值联系支付宝确认。
///
[XmlElement("biz_scene")]
public string BizScene { get; set; }
///
/// JSON格式,传递业务扩展参数。
///
[XmlElement("business_params")]
public string BusinessParams { get; set; }
///
/// 转账标题,用于收银台展示标题
///
[XmlElement("order_title")]
public string OrderTitle { get; set; }
///
/// 商户的批次号
///
[XmlElement("out_batch_no")]
public string OutBatchNo { get; set; }
///
/// 公用回传参数,如果请求时传递了该参数,则异步通知商户时会回传该参数。
///
[XmlElement("passback_params")]
public string PassbackParams { get; set; }
///
/// 付款方信息
///
[XmlElement("payer_info")]
public Participant PayerInfo { get; set; }
///
/// 业务产品码。不同产品值不同,具体值联系支付宝确认。
///
[XmlElement("product_code")]
public string ProductCode { get; set; }
///
/// 转账备注
///
[XmlElement("remark")]
public string Remark { get; set; }
///
/// 绝对超时时间,格式为yyyy-MM-dd HH:mm。
///
[XmlElement("time_expire")]
public string TimeExpire { get; set; }
///
/// 批次总笔数
///
[XmlElement("total_count")]
public string TotalCount { get; set; }
///
/// 批次总金额,单位为元,精确到小数点后两位,取值范围[0.01,9999999999999.99]
///
[XmlElement("total_trans_amount")]
public string TotalTransAmount { get; set; }
///
/// 收款信息列表
///
[XmlArray("trans_order_list")]
[XmlArrayItem("trans_order_detail")]
public List TransOrderList { get; set; }
}
}