Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 855 Bytes

File metadata and controls

30 lines (20 loc) · 855 Bytes

NamedObject

Properties

Name Type Description Notes
name str [optional]

Example

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)

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