deleteAttachment method
Implementation
Future<void> deleteAttachment(String attachmentId,) async {
final response = await deleteAttachmentWithHttpInfo(attachmentId,);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}