Interface IClientParams

Interface representing client parameters configuration.

IClientParams

interface IClientParams {
    accessToken?: string;
    apiKey?: string;
    axiosConfig?: AxiosRequestConfig<any>;
    backgroundProcess?: IBackgroundProcesses;
    refreshToken?: string;
    secretKey?: string;
    tld?: TLD;
}

Properties

accessToken?: string

The access token for authentication.

apiKey?: string

The API key for authentication.

axiosConfig?: AxiosRequestConfig<any>

Axios request configuration.

backgroundProcess?: IBackgroundProcesses

Configuration for background processes.

refreshToken?: string

The refresh token for obtaining new access tokens.

secretKey?: string

The secret key for authentication.

tld?: TLD

The top-level domain for the client.