Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 792 Bytes

File metadata and controls

29 lines (20 loc) · 792 Bytes

Priority

processing job type

Properties

Name Type Description Notes

Example

from usd_search_client.models.priority import Priority

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

# convert the object into a dict
priority_dict = priority_instance.to_dict()
# create an instance of Priority from a dict
priority_from_dict = Priority.from_dict(priority_dict)

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