Access permissions of the user (if supported by platform)
| Name | Type | Description | Notes |
|---|---|---|---|
| write | str | [optional] | |
| read | str | [optional] |
from plesk_client.models.ftp_user_permissions import FtpUserPermissions
# TODO update the JSON string below
json = "{}"
# create an instance of FtpUserPermissions from a JSON string
ftp_user_permissions_instance = FtpUserPermissions.from_json(json)
# print the JSON string representation of the object
print(FtpUserPermissions.to_json())
# convert the object into a dict
ftp_user_permissions_dict = ftp_user_permissions_instance.to_dict()
# create an instance of FtpUserPermissions from a dict
ftp_user_permissions_from_dict = FtpUserPermissions.from_dict(ftp_user_permissions_dict)