Nog CLI Developer Guide - v0.11.0
    Preparing search index...
    interface HttpCallConfig {
        acceptHeader?: string;
        bodyVar?: string;
        contentTypeHeader?: string;
        hasOptionalParams?: boolean;
        headerParams?: string[];
        httpMethod: string;
        isFormData?: boolean;
        queryParamMeta?: Record<string, QueryParamMeta>;
        queryParams?: string[];
        responseType?: string;
        returnType?: TypeNode;
        urlVar?: string;
    }
    Index

    Properties

    acceptHeader?: string
    bodyVar?: string
    contentTypeHeader?: string
    hasOptionalParams?: boolean
    headerParams?: string[]
    httpMethod: string
    isFormData?: boolean

    True when the operation declares a multipart/form-data or application/x-www-form-urlencoded request body. Currently informational — the multipart body is delegated to axios auto-serialization via the Content-Type header. The flag is preserved so we can branch on it if a future change swaps axios for another HTTP client.

    queryParamMeta?: Record<string, QueryParamMeta>
    queryParams?: string[]
    responseType?: string
    returnType?: TypeNode
    urlVar?: string