Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 764 Bytes

Empty.md

File metadata and controls

29 lines (20 loc) · 764 Bytes

Empty

flag to show if the object is empty

Properties

Name Type Description Notes

Example

from usd_search_client.models.empty import Empty

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

# convert the object into a dict
empty_dict = empty_instance.to_dict()
# create an instance of Empty from a dict
empty_from_dict = Empty.from_dict(empty_dict)

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