Usage
Create or import the configuration
See configuration on how to create or import the configuration.
var apiConfiguration = // ...
Create and use the API client
var apiClient = new TcgCollectorApiClient(apiConfiguration);
var cardDtos = await apiClient.Cards.FindManyAutoPaginatedAsync(new FindCardsOptions
{
CardSearch = "Charizard",
TcgRegionNames = ["International"],
});