
com.alipay.api.domain.AlipayOpenPublicLifeLabelCreateModel 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
baidu push client api with maven
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-06-27 17:50:46
*/
public class AlipayOpenPublicLifeLabelCreateModel extends AlipayObject {
private static final long serialVersionUID = 7243513396837751361L;
/**
* 标签值类型,目前只支持string(字符串类型),不传默认为"string"
*/
@ApiField("data_type")
private String dataType;
/**
* 自定义标签名
*/
@ApiField("label_name")
private String labelName;
public String getDataType() {
return this.dataType;
}
public void setDataType(String dataType) {
this.dataType = dataType;
}
public String getLabelName() {
return this.labelName;
}
public void setLabelName(String labelName) {
this.labelName = labelName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy