Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1 KB

File metadata and controls

33 lines (24 loc) · 1 KB

Permissions

Properties

Name Type Description Notes
can_export_symbols bool
can_generate_pdf_reports bool
can_use_ai_malware_analysis bool
can_use_malware_sandbox bool
can_use_private_analyses bool

Example

from revengai.models.permissions import Permissions

# TODO update the JSON string below
json = "{}"
# create an instance of Permissions from a JSON string
permissions_instance = Permissions.from_json(json)
# print the JSON string representation of the object
print(Permissions.to_json())

# convert the object into a dict
permissions_dict = permissions_instance.to_dict()
# create an instance of Permissions from a dict
permissions_from_dict = Permissions.from_dict(permissions_dict)

[Back to Model list] [Back to API list] [Back to README]