using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// EbppBillKey Data Structure. /// [Serializable] public class EbppBillKey : AopObject { /// /// 户号 /// [JsonProperty("bill_key")] public string BillKey { get; set; } /// /// 业务类型缩写: JF-缴费 /// [JsonProperty("biz_type")] public string BizType { get; set; } /// /// 出账机构缩写 /// [JsonProperty("charge_inst")] public string ChargeInst { get; set; } /// /// 脱敏的户主姓名 /// [JsonProperty("owner_name")] public string OwnerName { get; set; } /// /// 子业务类型英文名称: ELECTRIC-电力 GAS-燃气 WATER-水 /// [JsonProperty("sub_biz_type")] public string SubBizType { get; set; } } }