deleteInboxRepliers method

Future<void> deleteInboxRepliers({
  1. String? inboxId,
})

Delete inbox repliers

Delete inbox repliers. Accepts optional inboxId filter.

Parameters:

  • String inboxId: Optional inbox id to attach replier to

Implementation

Future<void> deleteInboxRepliers({ String? inboxId, }) async {
  final response = await deleteInboxRepliersWithHttpInfo( inboxId: inboxId, );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}