com.alipay.api.response.AlipayCommerceCommonGuidedcodeReceiveResponse 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.commerce.common.guidedcode.receive response.
*
* @author auto create
* @since 1.0, 2024-07-04 17:03:40
*/
public class AlipayCommerceCommonGuidedcodeReceiveResponse extends AlipayResponse {
private static final long serialVersionUID = 3487718576453751352L;
/**
* 具体跳转的端内链接,为创建模板时的appletId
*/
@ApiField("guided_code")
private String guidedCode;
/**
* 二维码图片
*/
@ApiField("guided_code_img")
private String guidedCodeImg;
/**
* 支付宝吱口令
*/
@ApiField("guided_share_code")
private String guidedShareCode;
/**
* 推广短链接
*/
@ApiField("guided_short_url")
private String guidedShortUrl;
public void setGuidedCode(String guidedCode) {
this.guidedCode = guidedCode;
}
public String getGuidedCode( ) {
return this.guidedCode;
}
public void setGuidedCodeImg(String guidedCodeImg) {
this.guidedCodeImg = guidedCodeImg;
}
public String getGuidedCodeImg( ) {
return this.guidedCodeImg;
}
public void setGuidedShareCode(String guidedShareCode) {
this.guidedShareCode = guidedShareCode;
}
public String getGuidedShareCode( ) {
return this.guidedShareCode;
}
public void setGuidedShortUrl(String guidedShortUrl) {
this.guidedShortUrl = guidedShortUrl;
}
public String getGuidedShortUrl( ) {
return this.guidedShortUrl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy