Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

FtpUserPermissions

Access permissions of the user (if supported by platform)

Properties

Name Type Description Notes
write str [optional]
read str [optional]

Example

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)

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