Binance Connector JS
    Preparing search index...

    Interface RequestArgs

    Represents the arguments for a request.

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

    Properties

    endpoint: string

    The endpoint for the request.

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

    The HTTP method for the request.

    params: Record<string, unknown>

    The parameters for the request.

    timeUnit?: TimeUnit

    The optional time unit for the request.