public async Task <ApiResponse <List <ClanSummary> > > GetTopClansResponseAsync(Locations location = Locations.None, ClanSummaryFilter clanSummaryFilter = null)
        {
            var apiResponse = await _restApiClient.GetApiResponseAsync <List <ClanSummary> >(UrlPathBuilder.GetTopClansUrl(location), clanSummaryFilter?.ToQueryParams());

            return(apiResponse);
        }