@squidcloud/client
    Preparing search index...

    Interface OpenApiResponse

    Represents a standardized HTTP response in OpenAPI format.

    interface OpenApiResponse {
        body: any;
        headers: Record<string, any>;
        statusCode: number;
    }
    Index

    Properties

    body: any

    Body content of the response.

    headers: Record<string, any>

    HTTP headers returned in the response.

    statusCode: number

    HTTP status code of the response.