![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.quickbi_public20220101.models.ChangeVisibilityModelRequest 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 ChangeVisibilityModelRequest extends TeaModel {
/**
* The number of menus that are successfully modified.
*/
@NameInMap("DataPortalId")
public String dataPortalId;
/**
* Indicates whether the request is successful. Valid values:
*
* * true: The request was successful.
* * false: The request failed.
*/
@NameInMap("MenuIds")
public String menuIds;
@NameInMap("ShowOnlyWithAccess")
public Boolean showOnlyWithAccess;
public static ChangeVisibilityModelRequest build(java.util.Map map) throws Exception {
ChangeVisibilityModelRequest self = new ChangeVisibilityModelRequest();
return TeaModel.build(map, self);
}
public ChangeVisibilityModelRequest setDataPortalId(String dataPortalId) {
this.dataPortalId = dataPortalId;
return this;
}
public String getDataPortalId() {
return this.dataPortalId;
}
public ChangeVisibilityModelRequest setMenuIds(String menuIds) {
this.menuIds = menuIds;
return this;
}
public String getMenuIds() {
return this.menuIds;
}
public ChangeVisibilityModelRequest setShowOnlyWithAccess(Boolean showOnlyWithAccess) {
this.showOnlyWithAccess = showOnlyWithAccess;
return this;
}
public Boolean getShowOnlyWithAccess() {
return this.showOnlyWithAccess;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy