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

com.ringcentral.definitions.Roles Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.definitions;


public class Roles {
    /**
     * Link to a role
     * Format: uri
     */
    public String uri;
    /**
     * Internal identifier of a role
     */
    public String id;
    /**
     *
     */
    public Boolean autoAssigned;
    /**
     *
     */
    public String displayName;
    /**
     *
     */
    public Boolean siteCompatible;
    /**
     *
     */
    public Boolean siteRestricted;

    public Roles uri(String uri) {
        this.uri = uri;
        return this;
    }

    public Roles id(String id) {
        this.id = id;
        return this;
    }

    public Roles autoAssigned(Boolean autoAssigned) {
        this.autoAssigned = autoAssigned;
        return this;
    }

    public Roles displayName(String displayName) {
        this.displayName = displayName;
        return this;
    }

    public Roles siteCompatible(Boolean siteCompatible) {
        this.siteCompatible = siteCompatible;
        return this;
    }

    public Roles siteRestricted(Boolean siteRestricted) {
        this.siteRestricted = siteRestricted;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy