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

com.antgroup.antchain.openapi.rms.models.NavTenant Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.rms.models;

import com.aliyun.tea.*;

public class NavTenant extends TeaModel {
    // tenant
    @NameInMap("tenant")
    @Validation(required = true)
    public Tenant tenant;

    // view_power
    @NameInMap("view_power")
    @Validation(required = true)
    public Boolean viewPower;

    // nav_workspaces
    @NameInMap("nav_workspaces")
    @Validation(required = true)
    public java.util.List navWorkspaces;

    // nav_biz_domains
    @NameInMap("nav_biz_domains")
    @Validation(required = true)
    public java.util.List navBizDomains;

    public static NavTenant build(java.util.Map map) throws Exception {
        NavTenant self = new NavTenant();
        return TeaModel.build(map, self);
    }

    public NavTenant setTenant(Tenant tenant) {
        this.tenant = tenant;
        return this;
    }
    public Tenant getTenant() {
        return this.tenant;
    }

    public NavTenant setViewPower(Boolean viewPower) {
        this.viewPower = viewPower;
        return this;
    }
    public Boolean getViewPower() {
        return this.viewPower;
    }

    public NavTenant setNavWorkspaces(java.util.List navWorkspaces) {
        this.navWorkspaces = navWorkspaces;
        return this;
    }
    public java.util.List getNavWorkspaces() {
        return this.navWorkspaces;
    }

    public NavTenant setNavBizDomains(java.util.List navBizDomains) {
        this.navBizDomains = navBizDomains;
        return this;
    }
    public java.util.List getNavBizDomains() {
        return this.navBizDomains;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy