Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.43 KB

File metadata and controls

33 lines (24 loc) · 1.43 KB

ExtensionPointDefinition

Extension point definition. An {@link ExtensionPointDefinition ExtensionPointDefinition} is a concept used in Halo to allow for the dynamic extension of system. It defines a location within Halo where additional functionality can be added through the use of plugins or extensions.

Properties

Name Type Description Notes
api_version str
kind str
metadata Metadata
spec ExtensionPointSpec

Example

from halo_client.models.extension_point_definition import ExtensionPointDefinition

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

# convert the object into a dict
extension_point_definition_dict = extension_point_definition_instance.to_dict()
# create an instance of ExtensionPointDefinition from a dict
extension_point_definition_from_dict = ExtensionPointDefinition.from_dict(extension_point_definition_dict)

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