| Name | Type | Description | Notes |
|---|---|---|---|
| var_field | AlertFieldsSortableFieldsEnum | Name of field to sort by | |
| order | SortOrder | Direction of sort |
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)