Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.26 KB

File metadata and controls

34 lines (25 loc) · 1.26 KB

FtpUserRequest

Properties

Name Type Description Notes
name str User name in the system
password str User password
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]
parent_domain DomainReference

Example

from plesk_client.models.ftp_user_request import FtpUserRequest

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

# convert the object into a dict
ftp_user_request_dict = ftp_user_request_instance.to_dict()
# create an instance of FtpUserRequest from a dict
ftp_user_request_from_dict = FtpUserRequest.from_dict(ftp_user_request_dict)

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