lateCancellationOccurrence method
Future<void>
lateCancellationOccurrence(
- CancelledSeriesModel model, {
- required Object authorization,
Parameters:
-
CancelledSeriesModel model (required):
-
Object authorization:
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));
}
}