![JAR search and dependency download from the Maven repository](/logo.png)
com.ringcentral.definitions.CallRecordingCustomGreeting Maven / Gradle / Ivy
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