flag to show if the object is empty
Name | Type | Description | Notes |
---|
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)