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