import { Context } from "../imports/Context"; import { GlideScriptableInputStream } from "../types/GlideScriptableInputStream"; export declare class ServiceRESTResponse { constructor(cx: Context, args: any[], ctorObj: Function, inNewExpr: boolean); getBody(): string; getBodyStream(): GlideScriptableInputStream; getErrorCode(): number; getErrorMessage(): string; getErrorResponseBody(): string; getHeader(name: string): string; getStatusCode(): number; }