| Name |
Type |
Description |
Notes |
| name |
str |
User name in the system |
[optional] |
| password |
str |
User password |
[optional] |
| home |
str |
Subdirectory of the WWW Root that user is restricted to |
[optional] |
| quota |
int |
Hard disk quota in bytes (if supported by platform) |
[optional] |
| permissions |
FtpUserRequestPermissions |
|
[optional] |
from plesk_client.models.ftp_user_update_request import FtpUserUpdateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of FtpUserUpdateRequest from a JSON string
ftp_user_update_request_instance = FtpUserUpdateRequest.from_json(json)
# print the JSON string representation of the object
print(FtpUserUpdateRequest.to_json())
# convert the object into a dict
ftp_user_update_request_dict = ftp_user_update_request_instance.to_dict()
# create an instance of FtpUserUpdateRequest from a dict
ftp_user_update_request_from_dict = FtpUserUpdateRequest.from_dict(ftp_user_update_request_dict)
[Back to Model list] [Back to API list] [Back to README]