Binance Connector JS
    Preparing search index...

    Interface RequestArgs

    Represents the arguments for a request.

    interface RequestArgs {
        bodyParams: Record<string, unknown>;
        endpoint: string;
        method: "GET" | "POST" | "DELETE" | "PUT" | "PATCH";
        queryParams: Record<string, unknown>;
        timeUnit?: TimeUnit;
    }
    Index

    Properties

    bodyParams: Record<string, unknown>

    The body parameters for the request.

    endpoint: string

    The endpoint for the request.

    method: "GET" | "POST" | "DELETE" | "PUT" | "PATCH"

    The HTTP method for the request.

    queryParams: Record<string, unknown>

    The query parameters for the request.

    timeUnit?: TimeUnit

    The optional time unit for the request.