Lager - v5.2.0
    Preparing search index...

    Represents the response from an authentication request.

    This interface defines the structure of the response data received after an authentication request.

    AuthResponse

    interface AuthResponse {
        data?: {
            message: string;
            title: string;
            token: string;
            type: string;
            user: { api_key: string; email: string };
        };
        errors?: { detail: string; title: string };
    }
    Index

    Properties

    Properties

    data?: {
        message: string;
        title: string;
        token: string;
        type: string;
        user: { api_key: string; email: string };
    }

    The data object containing authentication details.

    errors?: { detail: string; title: string }

    The errors object containing error details.