Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

File metadata and controls

32 lines (23 loc) · 1.05 KB

ServerLicense

License parameters

Properties

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]

Example

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)

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