Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

LastSeenSortSchema

Descending order by default.

Properties

Name Type Description Notes
sort_by str
sort_order SortOrder [optional]

Example

from ibm_gdsc_sdk_saas.models.last_seen_sort_schema import LastSeenSortSchema

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

# convert the object into a dict
last_seen_sort_schema_dict = last_seen_sort_schema_instance.to_dict()
# create an instance of LastSeenSortSchema from a dict
last_seen_sort_schema_from_dict = LastSeenSortSchema.from_dict(last_seen_sort_schema_dict)

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