using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayAssetCardDisburseModel Data Structure.
///
[Serializable]
public class AlipayAssetCardDisburseModel : AopObject
{
///
/// 打款金额
///
[XmlElement("amount")]
public string Amount { get; set; }
///
/// 支付宝资产id,跟模板id二选一
///
[XmlElement("asset_id")]
public string AssetId { get; set; }
///
/// 资产平台类型卡/券
///
[XmlElement("asset_type")]
public string AssetType { get; set; }
///
/// 业务时间
///
[XmlElement("biz_dt")]
public string BizDt { get; set; }
///
/// 业务订单号,幂等用
///
[XmlElement("biz_no")]
public string BizNo { get; set; }
///
/// 扩展信息 账单信息key:merchantBillInfo
///
[XmlElement("extend_info")]
public string ExtendInfo { get; set; }
///
/// 资金流场景
///
[XmlElement("fund_scence")]
public string FundScence { get; set; }
///
/// 收款方支付宝用户id
///
[XmlElement("payee_user_id")]
public string PayeeUserId { get; set; }
///
/// 付款方支付宝用户id
///
[XmlElement("payer_user_id")]
public string PayerUserId { get; set; }
///
/// 支付宝模板id,跟资产id二选一
///
[XmlElement("template_id")]
public string TemplateId { get; set; }
///
/// 支付宝用户id
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}