Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 968 Bytes

File metadata and controls

34 lines (25 loc) · 968 Bytes

Theme

Theme extension.

Properties

Name Type Description Notes
api_version str
kind str
metadata Metadata
spec ThemeSpec
status ThemeStatus [optional]

Example

from halo_client.models.theme import Theme

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

# convert the object into a dict
theme_dict = theme_instance.to_dict()
# create an instance of Theme from a dict
theme_from_dict = Theme.from_dict(theme_dict)

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