public async Task GetIssuePhotos() { IPlanGridApi client = PlanGridClient.Create(); Page <Photo> photos = await client.GetIssuePhotos(TestData.Project1Uid, TestData.Project1Issue1Uid); Assert.AreEqual(1, photos.TotalCount); Assert.AreEqual(DateTime.Parse("11/16/2015 18:32:43"), photos.Data[0].CreatedAt); Assert.AreEqual(TestData.ApiTestsUserEmail, photos.Data[0].CreatedBy.Email); Assert.AreEqual("Galaxy", photos.Data[0].Title); Assert.AreEqual(TestData.PhotoUrl, photos.Data[0].Url); Assert.IsFalse(string.IsNullOrEmpty(photos.Data[0].Uid)); Assert.IsFalse(photos.Data[0].IsDeleted); }