Documentation
    Preparing search index...

    Interface ResourceBytesResult

    Outbound: successful fetch result.

    interface ResourceBytesResult {
        blob?: Blob;
        bodyBase64: string;
        headers: Readonly<Record<string, string>>;
        id: string;
        mime?: string;
        requestId: string;
        status: number;
        type: "resource.bytes.result";
    }
    Index

    Properties

    blob?: Blob

    Current NAP-RESOURCE Blob payload.

    bodyBase64: string

    Raw response bytes, base64-encoded for the postMessage wire.

    headers: Readonly<Record<string, string>>
    id: string

    Current NAP-RESOURCE correlation ID.

    mime?: string

    Current NAP-RESOURCE runtime-classified MIME.

    requestId: string

    Legacy Kehto correlation ID.

    status: number
    type: "resource.bytes.result"