Documentation
    Preparing search index...

    Request body metadata.

    interface IBody {
        description: () => string | undefined;
        key: string;
        media: () => OpenApi.IOperation.IMediaType;
        name: string;
        schema: OpenApi.IJsonSchema;
        type:
            | "text/plain"
            | "application/json"
            | "multipart/form-data"
            | "application/x-www-form-urlencoded";
        "x-nestia-encrypted"?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    description: () => string | undefined

    Returns description.

    key: string

    Body variable key.

    Returns source media type definition.

    name: string

    Body parameter name.

    Body type schema.

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

    Content media type.

    "x-nestia-encrypted"?: boolean

    Nestia encryption flag.