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

com.aliyun.quickbi_public20220101.models.ChangeVisibilityModelRequest 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 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