apiV2TutorBookingsDestroy method
Main viewset used by Tutors to control own bookings. Provides full list of fields for a Booking object. With filtering options.
Parameters:
- String id (required):
Implementation
Future<void> apiV2TutorBookingsDestroy(String id,) async {
final response = await apiV2TutorBookingsDestroyWithHttpInfo(id,);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}