Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.27 KB

File metadata and controls

29 lines (21 loc) · 1.27 KB

ValidatingSortClauseAlertedDevice

Properties

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

Example

from medigate_api.models.validating_sort_clause_alerted_device import ValidatingSortClauseAlertedDevice

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

# convert the object into a dict
validating_sort_clause_alerted_device_dict = validating_sort_clause_alerted_device_instance.to_dict()
# create an instance of ValidatingSortClauseAlertedDevice from a dict
validating_sort_clause_alerted_device_form_dict = validating_sort_clause_alerted_device.from_dict(validating_sort_clause_alerted_device_dict)

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