
com.alipay.api.domain.AlipaySocialBaseChatGnoticeModifyModel 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:37
*/
public class AlipaySocialBaseChatGnoticeModifyModel extends AlipayObject {
private static final long serialVersionUID = 5253772446649756722L;
/**
* 群id
*/
@ApiField("group_id")
private String groupId;
/**
* 群公告
*/
@ApiField("group_notice")
private String groupNotice;
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getGroupNotice() {
return this.groupNotice;
}
public void setGroupNotice(String groupNotice) {
this.groupNotice = groupNotice;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy