using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// SupportFunction Data Structure.
///
[Serializable]
public class SupportFunction : AopObject
{
///
/// 卡名称
///
[JsonProperty("card_name")]
public string CardName { get; set; }
///
/// 卡类型编码,为智能卡系统的内部编码规则
///
[JsonProperty("card_type")]
public string CardType { get; set; }
///
/// 功能,支持开卡(issue),圈存(load),充值转账(recharge)
///
[JsonProperty("function_type")]
public List FunctionType { get; set; }
///
/// 智能卡的跳转地址
///
[JsonProperty("goto_url")]
public string GotoUrl { get; set; }
}
}