Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 991 Bytes

File metadata and controls

34 lines (25 loc) · 991 Bytes

Plugin

A custom resource for Plugin.

Properties

Name Type Description Notes
api_version str
kind str
metadata Metadata
spec PluginSpec
status PluginStatus [optional]

Example

from halo_client.models.plugin import Plugin

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

# convert the object into a dict
plugin_dict = plugin_instance.to_dict()
# create an instance of Plugin from a dict
plugin_from_dict = Plugin.from_dict(plugin_dict)

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