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

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

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


/**
 * Information on a greeting language. Supported for types 'StopRecording', 'StartRecording', 'AutomaticRecording'
 */
public class CustomCompanyGreetingLanguageInfo {
    /**
     * Internal identifier of a greeting language
     */
    public String id;
    /**
     * Link to a greeting language
     * Format: uri
     */
    public String uri;
    /**
     * Name of a greeting language
     */
    public String name;
    /**
     * Locale code of a greeting language
     */
    public String localeCode;

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

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

    public CustomCompanyGreetingLanguageInfo name(String name) {
        this.name = name;
        return this;
    }

    public CustomCompanyGreetingLanguageInfo localeCode(String localeCode) {
        this.localeCode = localeCode;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy