lateCancellationOccurrence method

Future<void> lateCancellationOccurrence(
  1. CancelledSeriesModel model, {
  2. required Object authorization,
})

Parameters:

Implementation

Future<void> lateCancellationOccurrence(
  CancelledSeriesModel model, {
  required Object authorization,
}) async {
  final response = await lateCancellationOccurrenceWithHttpInfo(
    model,
    authorization: authorization,
  );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}