using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayInsAutoFeeReceiveConfirmModel Data Structure.
///
[Serializable]
public class AlipayInsAutoFeeReceiveConfirmModel : AopObject
{
///
/// 外部业务单号,幂等字段,必填。和保险公司交互时同收单系统的outTradeNo
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 交易总金额 ;单位分
///
[XmlElement("trade_amount")]
public long TradeAmount { get; set; }
}
}