interface ClientOptions {
    axiosInstance?: AxiosInstance;
    config?: Config;
    experienceId?: string[];
}

Properties

axiosInstance?: AxiosInstance

AxiosInstance to be used by client. Provide one of axiosInstance or config.

config?: Config

Config used to create AxiosInstance. Provide one of axiosInstance or config.

experienceId?: string[]