public async Task CallGetEventImagesAsync_ShouldReturnIRstResponse()
        {
            var response = await _sut.CallGetEventImagesAsync(new GetRequest("Z1lMVSyiJynZ177dJa"));

            Assert.NotNull(response);
            Assert.IsType <RestResponse>(response);
            Assert.Equal(HttpStatusCode.OK, response.StatusCode);
            Assert.NotNull(response.Content);
        }