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

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

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


/**
 * Caller ID settings by feature
 */
public class CallerIdByFeatureRequest {
    /**
     * Enum: RingOut, RingMe, CallFlip, FaxNumber, AdditionalSoftphone, Alternate, CommonPhone, MobileApp, Delegated
     */
    public String feature;
    /**
     *
     */
    public CallerIdByFeatureInfoRequest callerId;

    public CallerIdByFeatureRequest feature(String feature) {
        this.feature = feature;
        return this;
    }

    public CallerIdByFeatureRequest callerId(CallerIdByFeatureInfoRequest callerId) {
        this.callerId = callerId;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy