deleteInvoicedMonth method

Future<void> deleteInvoicedMonth(
  1. DeleteInvoicedMonthModel request, {
  2. required Object authorization,
})

Parameters:

Implementation

Future<void> deleteInvoicedMonth(
  DeleteInvoicedMonthModel request, {
  required Object authorization,
}) async {
  final response = await deleteInvoicedMonthWithHttpInfo(
    request,
    authorization: authorization,
  );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}