Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 855 Bytes

File metadata and controls

31 lines (21 loc) · 855 Bytes

NameValue

Properties

Name Type Description Notes
name str
value str [optional]

Example

from cloudharness_model.models.name_value import NameValue

# TODO update the JSON string below
json = "{}"
# create an instance of NameValue from a JSON string
name_value_instance = NameValue.from_json(json)
# print the JSON string representation of the object
print(NameValue.to_json())

# convert the object into a dict
name_value_dict = name_value_instance.to_dict()
# create an instance of NameValue from a dict
name_value_from_dict = NameValue.from_dict(name_value_dict)

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