Extension entity
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Extension identifier. | |
| name | str | Human readable name. | |
| version | str | Extension version. | |
| release | str | Extension release number. | |
| active | bool | Extension status. |
from plesk_client.models.extension import Extension
# TODO update the JSON string below
json = "{}"
# create an instance of Extension from a JSON string
extension_instance = Extension.from_json(json)
# print the JSON string representation of the object
print(Extension.to_json())
# convert the object into a dict
extension_dict = extension_instance.to_dict()
# create an instance of Extension from a dict
extension_from_dict = Extension.from_dict(extension_dict)