| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] |
from cloudharness_model.models.named_object import NamedObject
# TODO update the JSON string below
json = "{}"
# create an instance of NamedObject from a JSON string
named_object_instance = NamedObject.from_json(json)
# print the JSON string representation of the object
print(NamedObject.to_json())
# convert the object into a dict
named_object_dict = named_object_instance.to_dict()
# create an instance of NamedObject from a dict
named_object_from_dict = NamedObject.from_dict(named_object_dict)