@squidcloud/client
    Preparing search index...

    Interface RawRequest

    Represents a raw HTTP request, including method, path, query parameters, body, and headers.

    interface RawRequest {
        headers?: Record<string, string>;
        method: string;
        path: string;
        queryParams?: Record<string, string>;
        rawBody?: string;
    }
    Index

    Properties

    headers?: Record<string, string>

    The headers of the request, represented as key-value pairs.

    method: string

    The HTTP method of the request (e.g., GET, POST, PUT, DELETE).

    path: string

    The path of the request, excluding the domain and query parameters.

    queryParams?: Record<string, string>

    The query parameters of the request, represented as key-value pairs.

    rawBody?: string

    The body of the request, if applicable.