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

com.aliyun.quickbi_public20220101.models.QueryDatasetListRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class QueryDatasetListRequest extends TeaModel {
    /**
     * 

The ID of the request.

*/ @NameInMap("DirectoryId") public String directoryId; /** *

Information about the directory where the dataset is located

*/ @NameInMap("Keyword") public String keyword; /** *

The ID of the workspace.

*/ @NameInMap("PageNum") public Integer pageNum; /** *

Specifies the directory ID.

*
*

* If this field is not empty, all datasets in the directory are obtained.

*/ @NameInMap("PageSize") public Integer pageSize; /** *

The total number of pages returned.

*/ @NameInMap("WithChildren") public Boolean withChildren; /** *

The name of the data source.

*/ @NameInMap("WorkspaceId") public String workspaceId; public static QueryDatasetListRequest build(java.util.Map map) throws Exception { QueryDatasetListRequest self = new QueryDatasetListRequest(); return TeaModel.build(map, self); } public QueryDatasetListRequest setDirectoryId(String directoryId) { this.directoryId = directoryId; return this; } public String getDirectoryId() { return this.directoryId; } public QueryDatasetListRequest setKeyword(String keyword) { this.keyword = keyword; return this; } public String getKeyword() { return this.keyword; } public QueryDatasetListRequest setPageNum(Integer pageNum) { this.pageNum = pageNum; return this; } public Integer getPageNum() { return this.pageNum; } public QueryDatasetListRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public QueryDatasetListRequest setWithChildren(Boolean withChildren) { this.withChildren = withChildren; return this; } public Boolean getWithChildren() { return this.withChildren; } public QueryDatasetListRequest setWorkspaceId(String workspaceId) { this.workspaceId = workspaceId; return this; } public String getWorkspaceId() { return this.workspaceId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy