using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayCommerceCityfacilitatorDepositConfirmModel Data Structure.
///
[Serializable]
public class AlipayCommerceCityfacilitatorDepositConfirmModel : AopObject
{
///
/// 传递确认的终端信息,终端编号等
///
[XmlElement("biz_info_ext")]
public string BizInfoExt { get; set; }
///
/// 交通卡号
///
[XmlElement("card_no")]
public string CardNo { get; set; }
///
/// 交通卡卡类型,一个城市只有一个固定的值
///
[XmlElement("card_type")]
public string CardType { get; set; }
///
/// 核销时间
///
[XmlElement("operate_time")]
public string OperateTime { get; set; }
///
/// 商户的交易号
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 该笔请求的唯一编号,强校验,控制幂等性
///
[XmlElement("request_id")]
public string RequestId { get; set; }
///
/// 支付宝交易号
///
[XmlElement("trade_no")]
public string TradeNo { get; set; }
}
}