@squidcloud/client
    Preparing search index...

    Interface AuthToken

    Represents an authentication token with its type and associated details.

    interface AuthToken {
        integrationId?: string;
        token: string;
        type: AuthType;
    }
    Index

    Properties

    integrationId?: string

    The ID of the integration associated with the token, if applicable.

    token: string

    The token string used for authentication.

    type: AuthType

    The type of authentication (e.g., 'Bearer' or 'ApiKey').