com.alipay.api.domain.AlipayOpenAppQrcodeCreateModel 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 小程序生成推广二维码接口
*
* @author auto create
* @since 1.0, 2017-10-11 11:16:39
*/
public class AlipayOpenAppQrcodeCreateModel extends AlipayObject {
private static final long serialVersionUID = 7869356252878635664L;
/**
* 对应的二维码描述
*/
@ApiField("describe")
private String describe;
/**
* 小程序的启动参数,打开小程序的query ,在小程序 onLaunch的方法中获取
*/
@ApiField("query_param")
private String queryParam;
/**
* page/component/component-pages/view/view为小程序中能访问到的页面路径
*/
@ApiField("url_param")
private String urlParam;
public String getDescribe() {
return this.describe;
}
public void setDescribe(String describe) {
this.describe = describe;
}
public String getQueryParam() {
return this.queryParam;
}
public void setQueryParam(String queryParam) {
this.queryParam = queryParam;
}
public String getUrlParam() {
return this.urlParam;
}
public void setUrlParam(String urlParam) {
this.urlParam = urlParam;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy