com.alipay.api.response.AlipaySocialBaseChatGroupsQueryResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.GroupInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.social.base.chat.groups.query response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:33:21
*/
public class AlipaySocialBaseChatGroupsQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 3873525331352599976L;
/**
* 群信息列表
*/
@ApiListField("group_infos")
@ApiField("group_info")
private List groupInfos;
/**
* 是否有更多
*/
@ApiField("has_more")
private Boolean hasMore;
/**
* 同步的key,下一次分页获取使用
*/
@ApiField("last_key")
private Long lastKey;
public void setGroupInfos(List groupInfos) {
this.groupInfos = groupInfos;
}
public List getGroupInfos( ) {
return this.groupInfos;
}
public void setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
}
public Boolean getHasMore( ) {
return this.hasMore;
}
public void setLastKey(Long lastKey) {
this.lastKey = lastKey;
}
public Long getLastKey( ) {
return this.lastKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy