![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.quickbi_public20220101.models.QueryWorksBloodRelationshipRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickbi_public20220101 Show documentation
Show all versions of quickbi_public20220101 Show documentation
Alibaba Cloud quickbi-public (20220101) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.quickbi_public20220101.models;
import com.aliyun.tea.*;
public class QueryWorksBloodRelationshipRequest extends TeaModel {
/**
* Obtains the kinship of a data work, including the datasets referenced by each component and query field information. Currently, only supported data works include dashboards, workbooks, and self-service data retrieval.
*/
@NameInMap("WorksId")
public String worksId;
public static QueryWorksBloodRelationshipRequest build(java.util.Map map) throws Exception {
QueryWorksBloodRelationshipRequest self = new QueryWorksBloodRelationshipRequest();
return TeaModel.build(map, self);
}
public QueryWorksBloodRelationshipRequest setWorksId(String worksId) {
this.worksId = worksId;
return this;
}
public String getWorksId() {
return this.worksId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy