/** * Enum for CXone Agent related permission keys. * @readonly * @example PermissionKeys */ export declare enum PermissionKeys { /** * permission key of Agent soft phone login access */ AGENT_SOFTPHONE = "AgentSoftPhone", /** * permission key of Agent normal phone login access */ AGENT_PHONE = "AgentPhone", /** * permission key of Agent station login access */ AGENT_STATION = "AgentStation", /** * permission key whether Agent soft phone login allow auto accept of contacts */ AGENTLEG_AUTOACCEPT = "AgentSoftPhoneAutoAccept", /** * permission key for Commitment hide feature */ HIDE_CREATE_COMMITMENTS = "HideCreateCommitments", /** * permission key for checking CXOne Agent access given */ CXONE_AGENT = "CxoneAgent", /** * permission key of Case tab of Digital interaction search */ DIGITAL_SEARCH_CASES = "deSearchCases", /** * permission key of Message tab of Digital interaction search */ DIGITAL_SEARCH_MESSAGES = "deSearchMessages", /** * permission key of Customer tab of Digital interaction search */ DIGITAL_SEARCH_CUSTOMERS = "deSearchCustomers", /** * permission key of Thread tab of Digital interaction search */ DIGITAL_SEARCH_THREADS = "deSearchPosts", /** * permission key of showing or hiding the ACS radio button during * preference selection after the user logged in the application. */ ACS = "LaunchACS", /** * permission key whether Agent soft phone login allow auto accept of contacts */ HIDE_CALLER_PHONE_NUMBER = "HideCallerPhoneNumber", /** * permission key whether disable integrated softphone settings options are enabled */ DISABLE_INTEGRATED_SOFTPHONE_SETTINGS = "DisableIntegratedSoftphoneSettings", /** * permission key for enabling or disabling the voice transcript feature */ VOICE_TRANSCRIPT = "VoiceTranscript", /** * permission key for enabling or disabling the real-time recording status update feature */ REALTIME_RECORDING_STATUS_UPDATE = "realtimeRecordingStatusUpdate", /** * permission key for enabling or disabling the stop record feature */ STOP_RECORDING = "StopRecording", /** * permission key for enabling or disabling the real-time recording notification feature */ REALTIME_RECORDING_NOTIFICATION = "RealTimeRecordingNotification" }