NewGaoKaoApi/PaymentSDK/AliPay/Domain/SpecifiedChannelParam.cs

31 lines
944 B
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>
/// SpecifiedChannelParam Data Structure.
/// </summary>
[Serializable]
public class SpecifiedChannelParam : AopObject
{
/// <summary>
/// 银行卡类型只有在资产类型为BANKCARD时才有效。如果为空则标识不限制卡类型。卡类型在有值时仅支持 两类传参DD-贷记卡储蓄卡CC-信用卡。
/// </summary>
[XmlElement("bank_card_type")]
public string BankCardType { get; set; }
/// <summary>
/// 机构编码
/// </summary>
[XmlElement("inst_id")]
public string InstId { get; set; }
/// <summary>
/// 资产类型用以标识资产大类。BANKCARD - 银行卡
/// </summary>
[XmlElement("pay_tool_type")]
public string PayToolType { get; set; }
}
}