flag to show if the object is on the mount
Name | Type | Description | Notes |
---|
from usd_search_client.models.mounted import Mounted
# update the JSON string below
json = "{}"
# create an instance of Mounted from a JSON string
mounted_instance = Mounted.from_json(json)
# print the JSON string representation of the object
print(Mounted.to_json())
# convert the object into a dict
mounted_dict = mounted_instance.to_dict()
# create an instance of Mounted from a dict
mounted_from_dict = Mounted.from_dict(mounted_dict)