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

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

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


public class ServiceFeatureInfo {
    /**
     * Feature name
     * Enum: AccountFederation, Archiver, AutomaticCallRecordingMute, AutomaticInboundCallRecording, AutomaticOutboundCallRecording, BlockedMessageForwarding, Calendar, CallerIdControl, CallForwarding, CallPark, CallParkLocations, CallSupervision, CallSwitch, CallQualitySurvey, Conferencing, ConferencingNumber, ConfigureDelegates, DeveloperPortal, DND, DynamicConference, EmergencyAddressAutoUpdate, EmergencyCalling, EncryptionAtRest, ExternalDirectoryIntegration, Fax, FaxReceiving, FreeSoftPhoneLines, HDVoice, HipaaCompliance, Intercom, InternationalCalling, InternationalSMS, LinkedSoftphoneLines, MMS, MobileVoipEmergencyCalling, OnDemandCallRecording, Pager, PagerReceiving, Paging, PasswordAuth, PromoMessage, Reports, Presence, RCTeams, RingOut, SalesForce, SharedLines, SingleExtensionUI, SiteCodes, SMS, SMSReceiving, SoftPhoneUpdate, TelephonySessions, UserManagement, VideoConferencing, VoipCalling, VoipCallingOnMobile, Voicemail, VoicemailToText, WebPhone
     */
    public String featureName;
    /**
     * Feature status, shows feature availability for the extension
     */
    public Boolean enabled;

    public ServiceFeatureInfo featureName(String featureName) {
        this.featureName = featureName;
        return this;
    }

    public ServiceFeatureInfo enabled(Boolean enabled) {
        this.enabled = enabled;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy