using System; using System.Collections.Generic; using Aop.Api.Response; namespace Aop.Api.Request { /// /// AOP API: alipay.pass.tpl.content.update /// public class AlipayPassTplContentUpdateRequest : IAopRequest { /// /// 代理商代替商户发放卡券后,再代替商户更新卡券时,此值为商户的pid/appid /// public string ChannelId { get; set; } /// /// 支付宝pass唯一标识 /// public string SerialNumber { get; set; } /// /// 券状态,支持更新为USED,CLOSED两种状态 /// public string Status { get; set; } /// /// 模版动态参数信息【支付宝pass模版参数键值对JSON字符串】 /// public string TplParams { get; set; } /// /// 核销码串值【当状态变更为USED时,建议传入】 /// public string VerifyCode { get; set; } /// /// 核销方式,目前支持:wave(声波方式)、qrcode(二维码方式)、barcode(条码方式)、input(文本方式,即手工输入方式)。pass和verify_type不能同时为空 /// public string VerifyType { get; set; } #region IAopRequest Members private bool needEncrypt=false; private string apiVersion = "1.0"; private string terminalType; private string terminalInfo; private string prodCode; private string notifyUrl; private string returnUrl; private AopObject bizModel; public void SetNeedEncrypt(bool needEncrypt){ this.needEncrypt=needEncrypt; } public bool GetNeedEncrypt(){ return this.needEncrypt; } public void SetNotifyUrl(string notifyUrl){ this.notifyUrl = notifyUrl; } public string GetNotifyUrl(){ return this.notifyUrl; } public void SetReturnUrl(string returnUrl){ this.returnUrl = returnUrl; } public string GetReturnUrl(){ return this.returnUrl; } 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.pass.tpl.content.update"; } public void SetApiVersion(string apiVersion){ this.apiVersion=apiVersion; } public string GetApiVersion(){ return this.apiVersion; } public IDictionary GetParameters() { AopDictionary parameters = new AopDictionary(); parameters.Add("channel_id", this.ChannelId); parameters.Add("serial_number", this.SerialNumber); parameters.Add("status", this.Status); parameters.Add("tpl_params", this.TplParams); parameters.Add("verify_code", this.VerifyCode); parameters.Add("verify_type", this.VerifyType); return parameters; } public AopObject GetBizModel() { return this.bizModel; } public void SetBizModel(AopObject bizModel) { this.bizModel = bizModel; } #endregion } }