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

com.aliyun.dingtalkworkbench_1_0.models.UpdateDingPortalPageScopeRequest 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 UpdateDingPortalPageScopeRequest extends TeaModel {
    // 是否全员可见
    @NameInMap("allVisible")
    public Boolean allVisible;

    // 可见部门列表
    @NameInMap("deptIds")
    public java.util.List deptIds;

    // 可见角色列表
    @NameInMap("roleIds")
    public java.util.List roleIds;

    // 可见用户列表
    @NameInMap("userids")
    public java.util.List userids;

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

    public UpdateDingPortalPageScopeRequest setAllVisible(Boolean allVisible) {
        this.allVisible = allVisible;
        return this;
    }
    public Boolean getAllVisible() {
        return this.allVisible;
    }

    public UpdateDingPortalPageScopeRequest setDeptIds(java.util.List deptIds) {
        this.deptIds = deptIds;
        return this;
    }
    public java.util.List getDeptIds() {
        return this.deptIds;
    }

    public UpdateDingPortalPageScopeRequest setRoleIds(java.util.List roleIds) {
        this.roleIds = roleIds;
        return this;
    }
    public java.util.List getRoleIds() {
        return this.roleIds;
    }

    public UpdateDingPortalPageScopeRequest setUserids(java.util.List userids) {
        this.userids = userids;
        return this;
    }
    public java.util.List getUserids() {
        return this.userids;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy