using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOpenOperationBizfeeAftechRefundModel Data Structure.
///
[Serializable]
public class AlipayOpenOperationBizfeeAftechRefundModel : AopObject
{
///
/// 系统/应用名称
///
[XmlElement("app_name")]
public string AppName { get; set; }
///
/// 退费币种 币种数字编码。
///
[XmlElement("currency")]
public string Currency { get; set; }
///
/// 费用订单号
///
[XmlElement("fee_order_no")]
public string FeeOrderNo { get; set; }
///
/// 业务发生时间
///
[XmlElement("gmt_service")]
public string GmtService { get; set; }
///
/// 订单流水号
///
[XmlElement("order_no")]
public string OrderNo { get; set; }
///
/// 外部业务流水号
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 退费金额 单位元,最多两位小数。
///
[XmlElement("refund_amount")]
public string RefundAmount { get; set; }
///
/// 退费流水号
///
[XmlElement("refund_no")]
public string RefundNo { get; set; }
///
/// 租户Id
///
[XmlElement("tnt_inst_id")]
public string TntInstId { get; set; }
}
}