Information about the subaccount's Web Disk status.
Name | Type | Description | Notes |
---|---|---|---|
enabled | int | Whether the subaccount can access Web Disk. * `1` - Can access. * `0` - Cannot access. | [optional] |
homedir | str | The subaccount's Web Disk home directory, relative to the cPanel account's home directory. | [optional] |
perms | str | Whether the subaccount has read-only or read and write permissions. * `ro` - Read-only permissions. * `rw` - Read and write permissions. | [optional] |
private | int | Whether the subaccount's Web Disk directory permissions are public or private. * `1` - Private (`0700`). * `0` - Public (`0755`). | [optional] |
from clientapi_cpanel.models.subaccount_base_services_webdisk import SubaccountBaseServicesWebdisk
# TODO update the JSON string below
json = "{}"
# create an instance of SubaccountBaseServicesWebdisk from a JSON string
subaccount_base_services_webdisk_instance = SubaccountBaseServicesWebdisk.from_json(json)
# print the JSON string representation of the object
print(SubaccountBaseServicesWebdisk.to_json())
# convert the object into a dict
subaccount_base_services_webdisk_dict = subaccount_base_services_webdisk_instance.to_dict()
# create an instance of SubaccountBaseServicesWebdisk from a dict
subaccount_base_services_webdisk_from_dict = SubaccountBaseServicesWebdisk.from_dict(subaccount_base_services_webdisk_dict)