com.alipay.api.domain.TemplateActionInfoDTO 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-08-24 12:03:53
*/
public class TemplateActionInfoDTO extends AlipayObject {
private static final long serialVersionUID = 5293144911413638972L;
/**
* 行动点业务CODE,商户自定义
*/
@ApiField("code")
private String code;
/**
* 行动点展示文案
*/
@ApiField("text")
private String text;
/**
* 行动点跳转链接
*/
@ApiField("url")
private String url;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getText() {
return this.text;
}
public void setText(String text) {
this.text = text;
}
public String getUrl() {
return this.url;
}
public void setUrl(String url) {
this.url = url;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy