
com.alipay.api.domain.AlipayOpenPublicGroupDeleteModel 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-14 11:01:33
*/
public class AlipayOpenPublicGroupDeleteModel extends AlipayObject {
private static final long serialVersionUID = 2142325554512228112L;
/**
* 需要删除的用户分组的id
*/
@ApiField("group_id")
private String groupId;
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy