Data associated with HTTP error events.

interface RNHttpErrorData {
    code?: number;
    logs?: string;
    message?: string;
    reason: RNHttpErrorReason;
}

Properties

code?: number

Optional status code.

logs?: string

Additional error logs or details.

message?: string

Human-readable error message.

Enum value identifying the specific failure reason.