NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoTrafficCodeVerifyM...

43 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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