Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

File metadata and controls

31 lines (22 loc) · 1.27 KB

MetaInstallationLabelValue

Properties

Name Type Description Notes
type MetaInstallationLabelValueType
color MetaInstallationLabelValueType
name MetaInstallationLabelValueName

Example

from plesk_wp_toolkit_client.models.meta_installation_label_value import MetaInstallationLabelValue

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

# convert the object into a dict
meta_installation_label_value_dict = meta_installation_label_value_instance.to_dict()
# create an instance of MetaInstallationLabelValue from a dict
meta_installation_label_value_from_dict = MetaInstallationLabelValue.from_dict(meta_installation_label_value_dict)

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