MAIDR Documentation - v3.39.0
    Preparing search index...

    Interface ApiResponse<T>

    Generic API response wrapper containing success status, optional data, and error information.

    interface ApiResponse<T> {
        success: boolean;
        data?: T;
        error?: ApiError;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    success: boolean
    data?: T
    error?: ApiError