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

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

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


public class PrimaryCQInfo {
    /**
     * Call information to be displayed as 'Line 1' for a call queue call session
     * Enum: PhoneNumberLabel, PhoneNumber, QueueExtension, QueueName, CallerIdName, CallerIdNumber, None
     */
    public String type;
    /**
     * Call information value
     */
    public String value;

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

    public PrimaryCQInfo value(String value) {
        this.value = value;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy