Type alias ConnectionErrorEvent

ConnectionErrorEvent: {
    custom_data: Version;
    error_code: CONNECT_EVENT_ERROR_CODES | null;
    error_message: string;
    is_success: false;
    type: "connection-error";
}

Connection error event when a user cancels a connection or there is an error during the connection process.

Type declaration

  • custom_data: Version

    Custom data for the connection.

  • error_code: CONNECT_EVENT_ERROR_CODES | null

    Error code.

  • error_message: string

    Reason for the error.

  • is_success: false

    Connection success flag.

  • type: "connection-error"

    Event type.

Generated using TypeDoc