Documentation
    Preparing search index...

    Metadata of body.

    Describes how content-type being used in body, and whether encrypted or not.

    interface IBody {
        encrypted?: boolean;
        type:
            | "application/json"
            | "application/x-www-form-urlencoded"
            | "multipart/form-data"
            | "text/plain";
    }
    Index

    Properties

    Properties

    encrypted?: boolean
    type:
        | "application/json"
        | "application/x-www-form-urlencoded"
        | "multipart/form-data"
        | "text/plain"