Properties for the request to the HTTP server.

interface IFetchProps {
    body?: object;
    connection: IHttpConnection;
    parameters:
        | (null | string | number | bigint | boolean)[]
        | Record<string, null | string | number | bigint | boolean>;
    query?: object;
    route: IHttpMigrateRoute;
}

Properties

body?: object

Request body data.

connection: IHttpConnection

Connection info to the HTTP server.

parameters:
    | (null | string | number | bigint | boolean)[]
    | Record<string, null | string | number | bigint | boolean>

Path parameters.

Path parameters with sequenced array or key-value paired object.

query?: object

Query parameters as a key-value paired object.

Route information for the migration.