Documentation - v1.2.0-alpha.3
    Preparing search index...

    Represents the status of a token. This interface defines the structure of a token status, including channel ID, connection name, and other metadata.

    interface TokenStatus {
        channelId: string;
        connectionName: string;
        hasToken: boolean;
        serviceProviderDisplayName: string;
    }
    Index

    Properties

    channelId: string

    The ID of the channel associated with the token.

    connectionName: string

    The connection name associated with the token.

    hasToken: boolean

    Indicates whether a token is available.

    serviceProviderDisplayName: string

    The display name of the service provider.