| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | User ID in the database | |
| name | str | User name in the system | |
| home | str | Subdirectory of the WWW Root that user is restricted to | |
| quota | int | Hard disk quota in bytes (if supported by platform) | [optional] |
| permissions | FtpUserPermissions | [optional] | |
| parent_domain | int | ID of the parent domain |
from plesk_client.models.ftp_user import FtpUser
# TODO update the JSON string below
json = "{}"
# create an instance of FtpUser from a JSON string
ftp_user_instance = FtpUser.from_json(json)
# print the JSON string representation of the object
print(FtpUser.to_json())
# convert the object into a dict
ftp_user_dict = ftp_user_instance.to_dict()
# create an instance of FtpUser from a dict
ftp_user_from_dict = FtpUser.from_dict(ftp_user_dict)