com.aliyun.dingtalkattendance_1_0.models.GetATManageScopeResponseBody 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.dingtalkattendance_1_0.models;
import com.aliyun.tea.*;
public class GetATManageScopeResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
public static GetATManageScopeResponseBody build(java.util.Map map) throws Exception {
GetATManageScopeResponseBody self = new GetATManageScopeResponseBody();
return TeaModel.build(map, self);
}
public GetATManageScopeResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public static class GetATManageScopeResponseBodyResult extends TeaModel {
/**
* This parameter is required.
*
* example:
* false
*/
@NameInMap("hasMore")
public Boolean hasMore;
/**
* This parameter is required.
*
* example:
* partial
*/
@NameInMap("manageScope")
public String manageScope;
@NameInMap("userIds")
public java.util.List userIds;
public static GetATManageScopeResponseBodyResult build(java.util.Map map) throws Exception {
GetATManageScopeResponseBodyResult self = new GetATManageScopeResponseBodyResult();
return TeaModel.build(map, self);
}
public GetATManageScopeResponseBodyResult setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public GetATManageScopeResponseBodyResult setManageScope(String manageScope) {
this.manageScope = manageScope;
return this;
}
public String getManageScope() {
return this.manageScope;
}
public GetATManageScopeResponseBodyResult setUserIds(java.util.List userIds) {
this.userIds = userIds;
return this;
}
public java.util.List getUserIds() {
return this.userIds;
}
}
}