using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayUserCreditCard Data Structure. /// [Serializable] public class AlipayUserCreditCard : AopObject { /// /// 信用卡卡号,显示前6后2 /// [JsonProperty("card_no")] public string CardNo { get; set; } /// /// 开户行代码 /// [JsonProperty("inst_id")] public string InstId { get; set; } } }