Interface ICreateServiceClientOptions

Options for 'createServiceClient()' function.

interface ICreateServiceClientOptions {
    clientOptions: IApiClientOptions;
    service: string;
    version?: null | string;
}

Properties

clientOptions: IApiClientOptions

Options for the 'ApiClient' instance.

service: string

The name of the service.

version?: null | string

The custom version. Default: 'v1'

Generated using TypeDoc