Google Apps Script API
    Preparing search index...

    This class allows users to access specific information on HTTP responses. See also

    UrlFetchApp

    interface HTTPResponse {
        getAllHeaders(): object;
        getAs(contentType: string): Blob;
        getBlob(): Blob;
        getContent(): number[];
        getContentText(): string;
        getContentText(charset: string): string;
        getHeaders(): object;
        getResponseCode(): number;
    }
    Index

    Methods