using System; using System.Collections.Generic; using Aop.Api.Response; namespace Aop.Api.Request { /// /// AOP API: alipay.ebpp.subscribe.checkcode.import /// public class AlipayEbppSubscribeCheckcodeImportRequest : IAopRequest { /// /// 缴费户号 /// public string BillKey { get; set; } /// /// 业务类型 /// public string BizType { get; set; } /// /// 出账机构短名称 /// public string ChargeInst { get; set; } /// /// 订阅校验码 /// public string CheckCode { get; set; } /// /// 扩展字段内容 /// public string ExtendField { get; set; } /// /// 子业务类型 /// public string SubBizType { get; set; } #region IAopRequest Members private string apiVersion = "1.0"; private string terminalType; private string terminalInfo; private string prodCode; private string notifyUrl; public void SetNotifyUrl(string notifyUrl){ this.notifyUrl = notifyUrl; } public string GetNotifyUrl(){ return this.notifyUrl; } public void SetTerminalType(String terminalType){ this.terminalType=terminalType; } public string GetTerminalType(){ return this.terminalType; } public void SetTerminalInfo(String terminalInfo){ this.terminalInfo=terminalInfo; } public string GetTerminalInfo(){ return this.terminalInfo; } public void SetProdCode(String prodCode){ this.prodCode=prodCode; } public string GetProdCode(){ return this.prodCode; } public string GetApiName() { return "alipay.ebpp.subscribe.checkcode.import"; } public void SetApiVersion(string apiVersion){ this.apiVersion=apiVersion; } public string GetApiVersion(){ return this.apiVersion; } public IDictionary GetParameters() { AopDictionary parameters = new AopDictionary(); parameters.Add("bill_key", this.BillKey); parameters.Add("biz_type", this.BizType); parameters.Add("charge_inst", this.ChargeInst); parameters.Add("check_code", this.CheckCode); parameters.Add("extend_field", this.ExtendField); parameters.Add("sub_biz_type", this.SubBizType); return parameters; } #endregion } }