SupplyClient

constructor(config: ClientConfiguration)

Creates a new instance of SupplyClient using the provided configuration.

Parameters

config

The ClientConfiguration that includes API credentials and other optional parameters such as environment, timeouts, and logging masking options.

Example usage:

SupplyClient(
ClientConfiguration
.builder()
.key("API_KEY")
.secret("API_SECRET")
.build()
)