All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkworkbench_1_0.models.QueryComponentScopesResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkworkbench_1_0.models;

import com.aliyun.tea.*;

public class QueryComponentScopesResponseBody extends TeaModel {
    @NameInMap("deptVisibleScopes")
    public java.util.List deptVisibleScopes;

    // scopes
    @NameInMap("userVisibleScopes")
    public java.util.List userVisibleScopes;

    public static QueryComponentScopesResponseBody build(java.util.Map map) throws Exception {
        QueryComponentScopesResponseBody self = new QueryComponentScopesResponseBody();
        return TeaModel.build(map, self);
    }

    public QueryComponentScopesResponseBody setDeptVisibleScopes(java.util.List deptVisibleScopes) {
        this.deptVisibleScopes = deptVisibleScopes;
        return this;
    }
    public java.util.List getDeptVisibleScopes() {
        return this.deptVisibleScopes;
    }

    public QueryComponentScopesResponseBody setUserVisibleScopes(java.util.List userVisibleScopes) {
        this.userVisibleScopes = userVisibleScopes;
        return this;
    }
    public java.util.List getUserVisibleScopes() {
        return this.userVisibleScopes;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy