Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1001 Bytes

File metadata and controls

30 lines (21 loc) · 1001 Bytes

CreatedResponse

Properties

Name Type Description Notes
id int Entity with the specified ID successfully created
guid str Entity successfully created, new GUID is

Example

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]