We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request
TheHive4py relies on many enumeration but doesn't provide enum objects for that, to ease the development and prevent dev errors.
These enumerations can be used when describing models or when creating queries using thehive4py.query methods.
thehive4py.query
Example:
Instead of using
Eq('tlp', 2)
we should be able to use
Eq('tlp', TLP.AMBER)
The text was updated successfully, but these errors were encountered:
#161 Add enumeration class for TLP, PAP, SEVERITY, Case status and Ta…
9b5bc4a
…sk status
nadouani
No branches or pull requests
Request Type
Feature Request
Problem Description
TheHive4py relies on many enumeration but doesn't provide enum objects for that, to ease the development and prevent dev errors.
These enumerations can be used when describing models or when creating queries using
thehive4py.query
methods.Example:
Instead of using
we should be able to use
The text was updated successfully, but these errors were encountered: