Interface ITwitterErrorDetails

The error details.

interface ITwitterErrorDetails {
    code: number;
    message: string;
    name?: string;
    type?: string;
}

Implemented by

Properties

Properties

code: number

The internal error code.

message: string

The message associated with the error.

name?: string

The name of the error.

type?: string

The type of error.