Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.44 KB

File metadata and controls

31 lines (22 loc) · 1.44 KB

InstallationRemoveConfirmationResponse

Properties

Name Type Description Notes
id int Installation ID
database InstallationRemoveConfirmationDatabaseResponse
user InstallationRemoveConfirmationDatabaseUserResponse

Example

from plesk_wp_toolkit_client.models.installation_remove_confirmation_response import InstallationRemoveConfirmationResponse

# TODO update the JSON string below
json = "{}"
# create an instance of InstallationRemoveConfirmationResponse from a JSON string
installation_remove_confirmation_response_instance = InstallationRemoveConfirmationResponse.from_json(json)
# print the JSON string representation of the object
print(InstallationRemoveConfirmationResponse.to_json())

# convert the object into a dict
installation_remove_confirmation_response_dict = installation_remove_confirmation_response_instance.to_dict()
# create an instance of InstallationRemoveConfirmationResponse from a dict
installation_remove_confirmation_response_from_dict = InstallationRemoveConfirmationResponse.from_dict(installation_remove_confirmation_response_dict)

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