
com.alipay.api.domain.AlipayOpenPublicLabelDeleteModel 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-08-10 17:27:10
*/
public class AlipayOpenPublicLabelDeleteModel extends AlipayObject {
private static final long serialVersionUID = 4682816883148582926L;
/**
* 标签id
*/
@ApiField("id")
private String id;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy