apiV2TutorBookingsDestroy method

Future<void> apiV2TutorBookingsDestroy(
  1. String id
)

Main viewset used by Tutors to control own bookings. Provides full list of fields for a Booking object. With filtering options.

Parameters:

Implementation

Future<void> apiV2TutorBookingsDestroy(String id,) async {
  final response = await apiV2TutorBookingsDestroyWithHttpInfo(id,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}