public void ThenMyBookingIsNotPresent()
        {
            JObject response = BaseAPITests.getBooking(this.bookingRef);
            string ref = response.GetValue("bookingref").ToString();

            Assert.That(ref, Is.EqualTo(this.bookingRef));
        }