Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

RecordQuerySort

Properties

NameTypeDescriptionNotes
var_fieldstrSortable field path such as `created_at` or `payload.record_scope`.
directionstrSort direction.

Example

from ce_rise_hex_core_sdk.models.record_query_sort import RecordQuerySort

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

# convert the object into a dict
record_query_sort_dict = record_query_sort_instance.to_dict()
# create an instance of RecordQuerySort from a dict
record_query_sort_from_dict = RecordQuerySort.from_dict(record_query_sort_dict)

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