| Name | Type | Description | Notes |
|---|---|---|---|
| var_field | ServerInterfacesSortableFieldsEnum | Name of field to sort by | |
| order | SortOrder | Direction of sort |
from medigate_api.models.validating_sort_clauseserver_interfaces import ValidatingSortClauseserverInterfaces
# TODO update the JSON string below
json = "{}"
# create an instance of ValidatingSortClauseserverInterfaces from a JSON string
validating_sort_clauseserver_interfaces_instance = ValidatingSortClauseserverInterfaces.from_json(json)
# print the JSON string representation of the object
print(ValidatingSortClauseserverInterfaces.to_json())
# convert the object into a dict
validating_sort_clauseserver_interfaces_dict = validating_sort_clauseserver_interfaces_instance.to_dict()
# create an instance of ValidatingSortClauseserverInterfaces from a dict
validating_sort_clauseserver_interfaces_from_dict = ValidatingSortClauseserverInterfaces.from_dict(validating_sort_clauseserver_interfaces_dict)