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

ValidatingSortClauseserverInterfaces

Properties

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

Example

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)

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