Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

NoResultsResponseSortValue

Properties

Name Type Description Notes
order str [optional]
unmapped_type str [optional]

Example

from igvf_client.models.no_results_response_sort_value import NoResultsResponseSortValue

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

# convert the object into a dict
no_results_response_sort_value_dict = no_results_response_sort_value_instance.to_dict()
# create an instance of NoResultsResponseSortValue from a dict
no_results_response_sort_value_from_dict = NoResultsResponseSortValue.from_dict(no_results_response_sort_value_dict)

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