PowerKeys Scripting API
    Preparing search index...

    Interface HttpDownloadFileResponse

    Response from HTTP.DownloadFile.

    interface HttpDownloadFileResponse {
        statusCode: number;
        headers: HttpResponseHeaders;
        path: string | null;
        bytesTransferred: number;
    }
    Index
    statusCode: number

    Real HTTP status, including non-2xx statuses.

    Lowercase, duplicate-preserving response headers.

    path: string | null

    Absolute committed destination path for a successful 2xx response, otherwise null. Pass the original workspace-relative path, not this value, to other operations.

    bytesTransferred: number

    Download bytes committed to the destination, or zero for non-2xx responses.