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

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

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


public class BlockedCallerGreetingInfo {
    /**
     * Type of a greeting
     */
    public String type;
    /**
     *
     */
    public PresetInfo preset;

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

    public BlockedCallerGreetingInfo preset(PresetInfo preset) {
        this.preset = preset;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy