Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

File metadata and controls

29 lines (20 loc) · 1.08 KB

MetaInstallationLabelsMeta

Properties

Name Type Description Notes
template MetaInstallationLabel

Example

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)

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