67 lines
1.8 KiB
C#
67 lines
1.8 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenOperationBizfeeAftechUnsubscribeModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayOpenOperationBizfeeAftechUnsubscribeModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 系统/应用名称
|
|
/// </summary>
|
|
[XmlElement("app_name")]
|
|
public string AppName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 合约编号
|
|
/// </summary>
|
|
[XmlElement("ar_no")]
|
|
public string ArNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务发生时间
|
|
/// </summary>
|
|
[XmlElement("gmt_service")]
|
|
public string GmtService { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订购终止时间
|
|
/// </summary>
|
|
[XmlElement("gmt_stop")]
|
|
public string GmtStop { get; set; }
|
|
|
|
/// <summary>
|
|
/// 外部业务流水号
|
|
/// </summary>
|
|
[XmlElement("out_biz_no")]
|
|
public string OutBizNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 需退还的订购费用金额 单位元,最多两位小数。
|
|
/// </summary>
|
|
[XmlElement("return_fee_amount")]
|
|
public string ReturnFeeAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 需退还的订购费用币种 币种数字编码。
|
|
/// </summary>
|
|
[XmlElement("return_fee_currency")]
|
|
public string ReturnFeeCurrency { get; set; }
|
|
|
|
/// <summary>
|
|
/// 租户Id
|
|
/// </summary>
|
|
[XmlElement("tnt_inst_id")]
|
|
public string TntInstId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 已使用的订购服务量 传天数/次数等数值,用于校验退费金额正确性。
|
|
/// </summary>
|
|
[XmlElement("used_service_amount")]
|
|
public string UsedServiceAmount { get; set; }
|
|
}
|
|
}
|