Unblu Agent Embedded JS API
    Preparing search index...

    Interface MessageInputAvailability

    Describes what content can currently be copied into the message input of the conversation, based on the conversation permissions of the agent.

    All fields are false if no conversation is open with normal access in the element, or if the Agent Embedded JS API isn't initialized.

    interface MessageInputAvailability {
        fileUpload: boolean;
        internalChat: boolean;
        publicChat: boolean;
    }
    Index

    Properties

    fileUpload: boolean

    True if files can be copied into the message input. This requires the file upload to be enabled for the conversation and the agent to be allowed to write chat messages.

    internalChat: boolean

    True if the agent is allowed to write internal chat messages in the conversation.

    publicChat: boolean

    True if the agent is allowed to write public chat messages in the conversation.