Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.31 KB

File metadata and controls

30 lines (21 loc) · 1.31 KB

ValidatingSortClauseVulnerableDevice

Properties

Name Type Description Notes
var_field VulnerableDeviceSortableFieldsEnum Name of field to sort by
order SortOrder Direction of sort

Example

from medigate_api.models.validating_sort_clause_vulnerable_device import ValidatingSortClauseVulnerableDevice

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

# convert the object into a dict
validating_sort_clause_vulnerable_device_dict = validating_sort_clause_vulnerable_device_instance.to_dict()
# create an instance of ValidatingSortClauseVulnerableDevice from a dict
validating_sort_clause_vulnerable_device_from_dict = ValidatingSortClauseVulnerableDevice.from_dict(validating_sort_clause_vulnerable_device_dict)

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