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";
}

Properties

Properties

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