Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 999 Bytes

File metadata and controls

31 lines (22 loc) · 999 Bytes

DatabaseUser

Properties

Name Type Description Notes
id int ID of the database user [optional]
login str Database user login [optional]
database_id int ID of the database [optional]

Example

from plesk_client.models.database_user import DatabaseUser

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

# convert the object into a dict
database_user_dict = database_user_instance.to_dict()
# create an instance of DatabaseUser from a dict
database_user_from_dict = DatabaseUser.from_dict(database_user_dict)

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