Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

File metadata and controls

29 lines (20 loc) · 1.08 KB

CloneStubDatabaseResponse

Properties

Name Type Description Notes
value CloneStubDatabaseResponseValue

Example

from plesk_wp_toolkit_client.models.clone_stub_database_response import CloneStubDatabaseResponse

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

# convert the object into a dict
clone_stub_database_response_dict = clone_stub_database_response_instance.to_dict()
# create an instance of CloneStubDatabaseResponse from a dict
clone_stub_database_response_from_dict = CloneStubDatabaseResponse.from_dict(clone_stub_database_response_dict)

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