/** * Confirms the session has been initialized. */ export interface RttSessionStartedPayload { /** The message type identifier. */ messageType: "session_started"; /** Unique identifier for this session. */ sessionId: string; /** Client-defined session identifier, if provided during connection. */ clientSessionId?: string; }