
com.alipay.api.domain.AlipayOpenPublicLabelCreateModel 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, 2016-10-26 18:05:14
*/
public class AlipayOpenPublicLabelCreateModel extends AlipayObject {
private static final long serialVersionUID = 7762895615215614694L;
/**
* 标签名
*/
@ApiField("name")
private String name;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy