using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayEbppPdeductSignQueryResponse. /// public class AlipayEbppPdeductSignQueryResponse : AopResponse { /// /// 协议ID /// [JsonProperty("agreement_id")] public string AgreementId { get; set; } /// /// 户号 /// [JsonProperty("bill_key")] public string BillKey { get; set; } /// /// 出账机构 /// [JsonProperty("charge_inst")] public string ChargeInst { get; set; } /// /// 朗新协议ID /// [JsonProperty("out_agreement_id")] public string OutAgreementId { get; set; } /// /// 签约时间 /// [JsonProperty("sign_date")] public string SignDate { get; set; } /// /// 用户ID /// [JsonProperty("user_id")] public string UserId { get; set; } } }