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