Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.12 KB

File metadata and controls

34 lines (25 loc) · 1.12 KB

Database

Properties

Name Type Description Notes
id int ID of the database [optional]
name str Database name [optional]
type str Database server type [optional]
parent_domain int ID of the parent domain [optional]
server_id int ID of the database server [optional]
default_user_id int ID of the default database user for database [optional]

Example

from plesk_client.models.database import Database

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

# convert the object into a dict
database_dict = database_instance.to_dict()
# create an instance of Database from a dict
database_from_dict = Database.from_dict(database_dict)

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