Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 977 Bytes

File metadata and controls

31 lines (22 loc) · 977 Bytes

InstallationLabel

Properties

Name Type Description Notes
type str
color str
name str

Example

from plesk_wp_toolkit_client.models.installation_label import InstallationLabel

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

# convert the object into a dict
installation_label_dict = installation_label_instance.to_dict()
# create an instance of InstallationLabel from a dict
installation_label_from_dict = InstallationLabel.from_dict(installation_label_dict)

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