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

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

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


public class CallRecordingCustomGreeting {
    /**
     * Enum: StartRecording, StopRecording, AutomaticRecording
     */
    public String type;
    /**
     *
     */
    public CallRecordingCustomGreetingData custom;
    /**
     *
     */
    public CallRecordingCustomGreetingLanguage language;

    public CallRecordingCustomGreeting type(String type) {
        this.type = type;
        return this;
    }

    public CallRecordingCustomGreeting custom(CallRecordingCustomGreetingData custom) {
        this.custom = custom;
        return this;
    }

    public CallRecordingCustomGreeting language(CallRecordingCustomGreetingLanguage language) {
        this.language = language;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy