
com.alipay.api.domain.AlipayOpenPublicLabelModifyModel 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 AlipayOpenPublicLabelModifyModel extends AlipayObject {
private static final long serialVersionUID = 3266237741832678921L;
/**
* 要修改的标签id
*/
@ApiField("id")
private String id;
/**
* 要修改成的标签名
*/
@ApiField("name")
private String name;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy