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

com.aliyun.dingtalkwiki_2_0.models.GetWorkspacesRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetWorkspacesRequest extends TeaModel {
    @NameInMap("option")
    public GetWorkspacesRequestOption option;

    /**
     * 

This parameter is required.

*/ @NameInMap("workspaceIds") public java.util.List workspaceIds; /** *

This parameter is required.

* * example: *

union_id

*/ @NameInMap("operatorId") public String operatorId; public static GetWorkspacesRequest build(java.util.Map map) throws Exception { GetWorkspacesRequest self = new GetWorkspacesRequest(); return TeaModel.build(map, self); } public GetWorkspacesRequest setOption(GetWorkspacesRequestOption option) { this.option = option; return this; } public GetWorkspacesRequestOption getOption() { return this.option; } public GetWorkspacesRequest setWorkspaceIds(java.util.List workspaceIds) { this.workspaceIds = workspaceIds; return this; } public java.util.List getWorkspaceIds() { return this.workspaceIds; } public GetWorkspacesRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } public static class GetWorkspacesRequestOption extends TeaModel { /** * example: *

false

*/ @NameInMap("withPermissionRole") public Boolean withPermissionRole; public static GetWorkspacesRequestOption build(java.util.Map map) throws Exception { GetWorkspacesRequestOption self = new GetWorkspacesRequestOption(); return TeaModel.build(map, self); } public GetWorkspacesRequestOption setWithPermissionRole(Boolean withPermissionRole) { this.withPermissionRole = withPermissionRole; return this; } public Boolean getWithPermissionRole() { return this.withPermissionRole; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy