com.aliyun.dingtalkworkbench_1_0.models.QueryShortcutScopesResponseBody 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.dingtalkworkbench_1_0.models;
import com.aliyun.tea.*;
public class QueryShortcutScopesResponseBody extends TeaModel {
@NameInMap("deptVisibleScopes")
public java.util.List deptVisibleScopes;
@NameInMap("userVisibleScopes")
public java.util.List userVisibleScopes;
public static QueryShortcutScopesResponseBody build(java.util.Map map) throws Exception {
QueryShortcutScopesResponseBody self = new QueryShortcutScopesResponseBody();
return TeaModel.build(map, self);
}
public QueryShortcutScopesResponseBody setDeptVisibleScopes(java.util.List deptVisibleScopes) {
this.deptVisibleScopes = deptVisibleScopes;
return this;
}
public java.util.List getDeptVisibleScopes() {
return this.deptVisibleScopes;
}
public QueryShortcutScopesResponseBody setUserVisibleScopes(java.util.List userVisibleScopes) {
this.userVisibleScopes = userVisibleScopes;
return this;
}
public java.util.List getUserVisibleScopes() {
return this.userVisibleScopes;
}
}