Represents a list of sort fields to apply to the request
| Name | Type | Description | Notes |
|---|---|---|---|
| fields | List[SortFieldSchema] | The list of fields to sort by | [optional] |
from cloudbeds_pms.models.sort_schema import SortSchema
# TODO update the JSON string below
json = "{}"
# create an instance of SortSchema from a JSON string
sort_schema_instance = SortSchema.from_json(json)
# print the JSON string representation of the object
print(SortSchema.to_json())
# convert the object into a dict
sort_schema_dict = sort_schema_instance.to_dict()
# create an instance of SortSchema from a dict
sort_schema_from_dict = SortSchema.from_dict(sort_schema_dict)