com.ringcentral.definitions.PrimaryCQInfo Maven / Gradle / Ivy
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