using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// CardBinVO Data Structure. /// [Serializable] public class CardBinVO : AopObject { /// /// 卡的别名 /// [JsonProperty("card_alias")] public string CardAlias { get; set; } /// /// 卡bin值,通常为卡号的前6位 /// [JsonProperty("card_bin_value")] public string CardBinValue { get; set; } /// /// 卡类型对象定义 /// [JsonProperty("card_type_vo")] public CardTypeVO CardTypeVo { get; set; } /// /// 卡域模型定义 /// [JsonProperty("domain_vo")] public CardDomainVO DomainVo { get; set; } /// /// 机构内标 /// [JsonProperty("inst_id")] public string InstId { get; set; } /// /// 卡号长度 /// [JsonProperty("inst_len")] public string InstLen { get; set; } /// /// 备注 /// [JsonProperty("memo")] public string Memo { get; set; } /// /// 操作员 /// [JsonProperty("operator")] public string Operator { get; set; } /// /// 卡版本信息 /// [JsonProperty("version")] public string Version { get; set; } } }