zendesk-messaging-client
    Preparing search index...

    Type Alias DefaultResponderReadable

    Default Responder

    type DefaultResponderReadable = {
        defaultResponder?:
            | {
                deliverStandbyEvents?: boolean;
                inherited?: boolean;
                integrationId?: string;
                integrationType?: string;
                messageHistoryCount?: number;
                name?: string;
                nextSwitchboardIntegrationId?: string
                | null;
            }
            | null;
    }
    Index

    Properties

    defaultResponder?:
        | {
            deliverStandbyEvents?: boolean;
            inherited?: boolean;
            integrationId?: string;
            integrationType?: string;
            messageHistoryCount?: number;
            name?: string;
            nextSwitchboardIntegrationId?: string
            | null;
        }
        | null

    The default responder for the integration. This is the responder that will be used to send messages to the user. For more information, refer to the Per-channel default responder guide.

    Type declaration

    • {
          deliverStandbyEvents?: boolean;
          inherited?: boolean;
          integrationId?: string;
          integrationType?: string;
          messageHistoryCount?: number;
          name?: string;
          nextSwitchboardIntegrationId?: string | null;
      }
      • OptionaldeliverStandbyEvents?: boolean

        Indicates whether the switchboard should deliver standby events.

      • Optionalinherited?: boolean

        Indicates whether the default responder is inherited from the switchboard's global config or not. Returns false if a per-channel responder override has been set for this integration, and true otherwise.

      • OptionalintegrationId?: string

        The unique ID of the integration.

      • OptionalintegrationType?: string

        The type of the integration.

      • OptionalmessageHistoryCount?: number

        The number of messages to keep in the message history.

      • Optionalname?: string

        The name of the switchboard integration.

      • OptionalnextSwitchboardIntegrationId?: string | null

        The unique ID of the next switchboard integration.

    • null