Interface ApiXResponse

A response returned from an ApiXRequestHandler.

interface ApiXResponse {
    data: ApiXJsonDictionary<unknown>;
    status?: number;
}

Properties

Properties

data: ApiXJsonDictionary<unknown>

The JSON data of the response.

status?: number

The HTTP status code. If not provided, defaults to 200.