| Name | Type | Description | Notes |
|---|---|---|---|
| template | MetaInstallationLabel |
from plesk_wp_toolkit_client.models.meta_installation_labels_meta import MetaInstallationLabelsMeta
# TODO update the JSON string below
json = "{}"
# create an instance of MetaInstallationLabelsMeta from a JSON string
meta_installation_labels_meta_instance = MetaInstallationLabelsMeta.from_json(json)
# print the JSON string representation of the object
print(MetaInstallationLabelsMeta.to_json())
# convert the object into a dict
meta_installation_labels_meta_dict = meta_installation_labels_meta_instance.to_dict()
# create an instance of MetaInstallationLabelsMeta from a dict
meta_installation_labels_meta_from_dict = MetaInstallationLabelsMeta.from_dict(meta_installation_labels_meta_dict)