com.alipay.api.response.AlipayPassTemplateAddResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.pass.template.add response.
*
* @author auto create
* @since 1.0, 2020-09-04 17:22:26
*/
public class AlipayPassTemplateAddResponse extends AlipayResponse {
private static final long serialVersionUID = 5868499375146885458L;
/**
* 接口调用返回结果信息(json字串):
errorCode:处理结果码(错误码);
errorMsg:处理结果说明(错误说明);
tpl_id:模板编号,预期在调发券接口时必须传入;
tpl_params:动态参数(变量)列表,预期在调发券接口时传入;
*/
@ApiField("result")
private String result;
/**
* 操作成功标识【true:成功;false:失败】
*/
@ApiField("success")
private String success;
public void setResult(String result) {
this.result = result;
}
public String getResult( ) {
return this.result;
}
public void setSuccess(String success) {
this.success = success;
}
public String getSuccess( ) {
return this.success;
}
}