| Name |
Type |
Description |
Notes |
| id |
int |
Entity with the specified ID successfully created |
|
| guid |
str |
Entity successfully created, new GUID is |
|
from plesk_client.models.created_response import CreatedResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CreatedResponse from a JSON string
created_response_instance = CreatedResponse.from_json(json)
# print the JSON string representation of the object
print(CreatedResponse.to_json())
# convert the object into a dict
created_response_dict = created_response_instance.to_dict()
# create an instance of CreatedResponse from a dict
created_response_from_dict = CreatedResponse.from_dict(created_response_dict)
[Back to Model list] [Back to API list] [Back to README]