NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayAssetCardReturnRefund...

105 lines
2.9 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayAssetCardReturnRefundModel Data Structure.
/// </summary>
[Serializable]
public class AlipayAssetCardReturnRefundModel : AopObject
{
/// <summary>
/// 资产id
/// </summary>
[XmlElement("asset_id")]
public string AssetId { get; set; }
/// <summary>
/// 资产id类型
/// </summary>
[XmlElement("asset_id_type")]
public string AssetIdType { get; set; }
/// <summary>
/// 业务发生时间
/// </summary>
[XmlElement("biz_dt")]
public string BizDt { get; set; }
/// <summary>
/// 业务来源
/// </summary>
[XmlElement("biz_from")]
public string BizFrom { get; set; }
/// <summary>
/// 扩展信息
/// </summary>
[XmlElement("extend_info")]
public string ExtendInfo { get; set; }
/// <summary>
/// 退卡资金场景
/// </summary>
[XmlElement("fund_scence")]
public string FundScence { get; set; }
/// <summary>
/// 是否销卡true为销卡false不销卡只退余额
/// </summary>
[XmlElement("is_cancel")]
public string IsCancel { get; set; }
/// <summary>
/// 操作人id
/// </summary>
[XmlElement("operator")]
public string Operator { get; set; }
/// <summary>
/// 比如某种业务标准外部订单号,比如交易外部订单号,代表商户端自己订单号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 订单明细
/// </summary>
[XmlArray("recharge_details")]
[XmlArrayItem("recharge_detail")]
public List<RechargeDetail> RechargeDetails { get; set; }
/// <summary>
/// 退卡真实资金,单位元,包含手续费
/// </summary>
[XmlElement("return_amount")]
public string ReturnAmount { get; set; }
/// <summary>
/// 退卡面额,单位元,包含手续费
/// </summary>
[XmlElement("return_asset_amount")]
public string ReturnAssetAmount { get; set; }
/// <summary>
/// 退卡手续费真实资金单位元没有放0
/// </summary>
[XmlElement("return_fee_amount")]
public string ReturnFeeAmount { get; set; }
/// <summary>
/// 退卡手续费面额单位元没有放0
/// </summary>
[XmlElement("return_fee_asset_amount")]
public string ReturnFeeAssetAmount { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}