Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

File metadata and controls

32 lines (23 loc) · 1.09 KB

DatabaseRequest

Properties

Name Type Description Notes
name str Database name [optional]
type str Database server type [optional]
parent_domain DomainReference [optional]
server_id int ID of the database server [optional]

Example

from plesk_client.models.database_request import DatabaseRequest

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

# convert the object into a dict
database_request_dict = database_request_instance.to_dict()
# create an instance of DatabaseRequest from a dict
database_request_from_dict = DatabaseRequest.from_dict(database_request_dict)

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