Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 797 Bytes

Mounted.md

File metadata and controls

29 lines (20 loc) · 797 Bytes

Mounted

flag to show if the object is on the mount

Properties

Name Type Description Notes

Example

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)

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