public async Task <ApiResponse <Statistic> > GetPodcastStatisticResponseAsync(int podcastId)
        {
            Ensure.GreaterThanZero(podcastId, nameof(podcastId));

            ApiResponse <Statistic> apiResponse = await _restApiClient.GetApiResponseAsync <Statistic>(UrlPathBuilder.GetPodcastStatisticUrl(podcastId));

            return(apiResponse);
        }