Interface ChannelConnectionInfo

Detailed connection info returned by adapters.

interface ChannelConnectionInfo {
    status: ChannelConnectionStatus;
    connectedSince?: string;
    errorMessage?: string;
    platformInfo?: Record<string, unknown>;
}

Properties

connectedSince?: string

When the connection was last established.

errorMessage?: string

Human-readable error if status is 'error'.

platformInfo?: Record<string, unknown>

Platform-specific metadata (e.g., bot username, workspace name).