Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.24 KB

File metadata and controls

30 lines (21 loc) · 1.24 KB

ValidatingSortClauseAlertFields

Properties

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

Example

from medigate_api.models.validating_sort_clause_alert_fields import ValidatingSortClauseAlertFields

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

# convert the object into a dict
validating_sort_clause_alert_fields_dict = validating_sort_clause_alert_fields_instance.to_dict()
# create an instance of ValidatingSortClauseAlertFields from a dict
validating_sort_clause_alert_fields_from_dict = ValidatingSortClauseAlertFields.from_dict(validating_sort_clause_alert_fields_dict)

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