Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

MetaInstallationLabels

Properties

Name Type Description Notes
value List[MetaInstallationLabel]
meta MetaInstallationLabelsMeta

Example

from plesk_wp_toolkit_client.models.meta_installation_labels import MetaInstallationLabels

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

# convert the object into a dict
meta_installation_labels_dict = meta_installation_labels_instance.to_dict()
# create an instance of MetaInstallationLabels from a dict
meta_installation_labels_from_dict = MetaInstallationLabels.from_dict(meta_installation_labels_dict)

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