using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// SpecifiedChannelParam Data Structure.
///
[Serializable]
public class SpecifiedChannelParam : AopObject
{
///
/// 银行卡类型,只有在资产类型为BANKCARD时才有效。如果为空,则标识不限制卡类型。卡类型在有值时,仅支持 两类传参:DD-贷记卡(储蓄卡),CC-信用卡。
///
[XmlElement("bank_card_type")]
public string BankCardType { get; set; }
///
/// 机构编码
///
[XmlElement("inst_id")]
public string InstId { get; set; }
///
/// 资产类型,用以标识资产大类。BANKCARD - 银行卡
///
[XmlElement("pay_tool_type")]
public string PayToolType { get; set; }
}
}