com.aliyun.dingtalkim_1_0.models.GetSceneGroupMembersResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class GetSceneGroupMembersResponseBody extends TeaModel {
// 是否还有更多数据
@NameInMap("hasMore")
public Boolean hasMore;
// 群成员员工号
@NameInMap("memberUserIds")
public java.util.List memberUserIds;
// 下一次请求的游标
@NameInMap("nextCursor")
public String nextCursor;
// result
@NameInMap("success")
public Boolean success;
public static GetSceneGroupMembersResponseBody build(java.util.Map map) throws Exception {
GetSceneGroupMembersResponseBody self = new GetSceneGroupMembersResponseBody();
return TeaModel.build(map, self);
}
public GetSceneGroupMembersResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public GetSceneGroupMembersResponseBody setMemberUserIds(java.util.List memberUserIds) {
this.memberUserIds = memberUserIds;
return this;
}
public java.util.List getMemberUserIds() {
return this.memberUserIds;
}
public GetSceneGroupMembersResponseBody setNextCursor(String nextCursor) {
this.nextCursor = nextCursor;
return this;
}
public String getNextCursor() {
return this.nextCursor;
}
public GetSceneGroupMembersResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}