
com.alipay.api.domain.AlipaySocialBaseChatGnameModifyModel 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-08-15 15:05:29
*/
public class AlipaySocialBaseChatGnameModifyModel extends AlipayObject {
private static final long serialVersionUID = 6725266629958515428L;
/**
* 群id
*/
@ApiField("group_id")
private String groupId;
/**
* 群名称
*/
@ApiField("group_name")
private String groupName;
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy