com.alipay.api.response.AlipayMarketingVoucherConfirmResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.marketing.voucher.confirm response.
*
* @author auto create
* @since 1.0, 2017-06-19 11:28:25
*/
public class AlipayMarketingVoucherConfirmResponse extends AlipayResponse {
private static final long serialVersionUID = 8129471144748318228L;
/**
* 用于决定在用户确认领券后是否重定向。可枚举:true表示需要重定向,false表示不需要重定向
*/
@ApiField("need_redirect")
private Boolean needRedirect;
/**
* 外部业务单号
*/
@ApiField("out_biz_no")
private String outBizNo;
/**
* 重定向地址,用于接收支付宝返回的领取码,必须使用utf-8编码
*/
@ApiField("redirect_uri")
private String redirectUri;
/**
* 发券码。如果发生异常sendCode为空
*/
@ApiField("send_code")
private String sendCode;
/**
* 模板ID
*/
@ApiField("template_id")
private String templateId;
/**
* 指定的用户确认页面主题名称
*/
@ApiField("theme")
private String theme;
/**
* 支付宝用户ID
*/
@ApiField("user_id")
private String userId;
public void setNeedRedirect(Boolean needRedirect) {
this.needRedirect = needRedirect;
}
public Boolean getNeedRedirect( ) {
return this.needRedirect;
}
public void setOutBizNo(String outBizNo) {
this.outBizNo = outBizNo;
}
public String getOutBizNo( ) {
return this.outBizNo;
}
public void setRedirectUri(String redirectUri) {
this.redirectUri = redirectUri;
}
public String getRedirectUri( ) {
return this.redirectUri;
}
public void setSendCode(String sendCode) {
this.sendCode = sendCode;
}
public String getSendCode( ) {
return this.sendCode;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
public String getTemplateId( ) {
return this.templateId;
}
public void setTheme(String theme) {
this.theme = theme;
}
public String getTheme( ) {
return this.theme;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserId( ) {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy