NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceCityfacilitat...

25 lines
749 B
C#
Raw Permalink 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>
/// AlipayCommerceCityfacilitatorScriptQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceCityfacilitatorScriptQueryModel : AopObject
{
/// <summary>
/// 卡类型,智能卡中心的内部编码规则
/// </summary>
[XmlElement("card_type")]
public string CardType { get; set; }
/// <summary>
/// 脚本类型,目前支持两种 readCardType判定卡是什么城市的交通卡 readCardInfo读取卡中的余额等信息
/// </summary>
[XmlElement("script_type")]
public string ScriptType { get; set; }
}
}