using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoTrafficCodeVerifyModel Data Structure. /// [Serializable] public class AlipayEcoTrafficCodeVerifyModel : AopObject { /// /// 凭证服务类型 /// [XmlElement("cert_service_type")] public string CertServiceType { get; set; } /// /// 凭证类型(卡类型) /// [XmlElement("cert_type")] public string CertType { get; set; } /// /// 码值/脱机记录 /// [XmlElement("offline_cert")] public string OfflineCert { get; set; } /// /// 解析类型:QRCODE/RECORD /// [XmlElement("parse_mode")] public string ParseMode { get; set; } /// /// 支付宝用户id /// [XmlElement("user_id")] public string UserId { get; set; } } }