using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// CityFunction Data Structure. /// [Serializable] public class CityFunction : AopObject { /// /// 城市标准编码 /// [JsonProperty("city_code")] public string CityCode { get; set; } /// /// 城市名称 /// [JsonProperty("city_name")] public string CityName { get; set; } /// /// 描述功能,支持开卡(issue),圈存(load),充值转账(recharge) /// [JsonProperty("function_type")] public List FunctionType { get; set; } } }