Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

QueryParameterSortSchema

Properties

Name Type Description Notes
sort SortSchema [optional]

Example

from cloudbeds_pms.models.query_parameter_sort_schema import QueryParameterSortSchema

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

# convert the object into a dict
query_parameter_sort_schema_dict = query_parameter_sort_schema_instance.to_dict()
# create an instance of QueryParameterSortSchema from a dict
query_parameter_sort_schema_from_dict = QueryParameterSortSchema.from_dict(query_parameter_sort_schema_dict)

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