featherbit UI
    Preparing search index...

    Interface BodyCapture

    A captured request or response body (text present only when enabled).

    interface BodyCapture {
        binary?: boolean;
        len: number;
        text?: string;
        truncated?: boolean;
        unchanged?: boolean;
    }
    Index
    binary?: boolean

    True when the body is not valid UTF-8 (image, blob, …); text is omitted.

    len: number
    text?: string
    truncated?: boolean
    unchanged?: boolean