| 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] |
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)