Datalayer VS Code Extension - v0.0.9
    Preparing search index...

    Interface HttpResponseMessage

    HTTP response from proxied request

    interface HttpResponseMessage {
        body: {
            body?: ArrayBuffer;
            headers: Record<string, string>;
            status: number;
            statusText: string;
        };
        requestId: string;
        type: "http-response";
    }
    Index

    Properties

    Properties

    body: {
        body?: ArrayBuffer;
        headers: Record<string, string>;
        status: number;
        statusText: string;
    }

    Response details

    Type Declaration

    • Optionalbody?: ArrayBuffer

      Response body

    • headers: Record<string, string>

      Response headers

    • status: number

      HTTP status code

    • statusText: string

      HTTP status text

    requestId: string

    Request ID for correlation

    type: "http-response"

    Message type discriminator