SAS logoSAS® Mobile Investigator API
    Preparing search index...

    Interface HttpResponse<R>

    The response returned from an HTTP request.

    interface HttpResponse<R> {
        body: R | null;
        headers: Record<string, string | string[]>;
        status: number;
        statusText: string;
        url: string | null;
    }

    Type Parameters

    • R
    Index

    Properties

    body: R | null

    The response body, or null if a response was not returned.

    headers: Record<string, string | string[]>

    The response headers.

    status: number

    The status code of the response.

    statusText: string

    The status message corresponding to the status code.

    url: string | null

    The URL of the response.