using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayAssetVoucherprodChargeSendModel Data Structure. /// [Serializable] public class AlipayAssetVoucherprodChargeSendModel : AopObject { /// /// 卡资金总金额,单位元 /// [XmlElement("amount")] public string Amount { get; set; } /// /// 资产总面额,单位元 /// [XmlElement("asset_amount")] public string AssetAmount { get; set; } /// /// 资产详情 /// [XmlArray("asset_details")] [XmlArrayItem("vcp_asset_detail")] public List AssetDetails { get; set; } /// /// 资产id /// [XmlElement("asset_id")] public string AssetId { get; set; } /// /// 资产id类型 模板/资产id实例 ASSET_INSTANCE(实例)/ASSET_TEMPLATE(模板) /// [XmlElement("asset_id_type")] public string AssetIdType { get; set; } /// /// 资产平台类型卡/券 /// [XmlElement("asset_type")] public string AssetType { get; set; } /// /// 业务发生时间 /// [XmlElement("biz_dt")] public string BizDt { get; set; } /// /// 扩展信息 /// [XmlElement("extend_info")] public string ExtendInfo { get; set; } /// /// 资金流场景 /// [XmlElement("fund_scence")] public string FundScence { get; set; } /// /// 比如某种业务标准外部订单号,比如交易外部订单号,代表商户端自己订单号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 用户userId /// [XmlElement("publisher_user_id")] public string PublisherUserId { get; set; } } }