Interface ClientOptions

interface ClientOptions {
    baseUrl: string | URL;
    isTest: boolean;
    userAgent: string;
}

Properties

baseUrl: string | URL

The base URL of the remote API endpoint.

isTest: boolean

Value indicating whether the client operates in test mode.

userAgent: string

The user agent string to use when making requests.