License parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | License key data. | [optional] |
| code | str | Activation code. | [optional] |
| additional | bool | It specifies if the key that will be installed is an additional key. | [optional] |
from plesk_client.models.server_license import ServerLicense
# TODO update the JSON string below
json = "{}"
# create an instance of ServerLicense from a JSON string
server_license_instance = ServerLicense.from_json(json)
# print the JSON string representation of the object
print(ServerLicense.to_json())
# convert the object into a dict
server_license_dict = server_license_instance.to_dict()
# create an instance of ServerLicense from a dict
server_license_from_dict = ServerLicense.from_dict(server_license_dict)