Interface IApiResponse

An API response.

interface IApiResponse {
    data: Nullable<ApiResponseData>;
    messages: IApiResponseMessage[];
    success: boolean;
}

Properties

Properties

data: Nullable<ApiResponseData>

The data to send.

List of messages.

success: boolean

Indicates if operation was successful or not.

Generated using TypeDoc