Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 958 Bytes

File metadata and controls

31 lines (22 loc) · 958 Bytes

ThemeStatus

Properties

Name Type Description Notes
conditions List[Condition] [optional]
location str [optional]
phase str [optional]

Example

from halo_client.models.theme_status import ThemeStatus

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

# convert the object into a dict
theme_status_dict = theme_status_instance.to_dict()
# create an instance of ThemeStatus from a dict
theme_status_from_dict = ThemeStatus.from_dict(theme_status_dict)

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