This object contains information that indicates 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. | [optional] |
perms | str | Whether to grant write permissions to the subaccount. * `ro` - Read-only permissions. * `rw` - Read and write permissions. | [optional] |
private | int | Whether to set the Web Disk directory's permissions to public or private. * `1` - Private (`0700`). * `0` - Public (`0755`). | [optional] |
from clientapi_cpanel.models.edit_user_subaccount_base_services_webdisk import EditUserSubaccountBaseServicesWebdisk
# TODO update the JSON string below
json = "{}"
# create an instance of EditUserSubaccountBaseServicesWebdisk from a JSON string
edit_user_subaccount_base_services_webdisk_instance = EditUserSubaccountBaseServicesWebdisk.from_json(json)
# print the JSON string representation of the object
print(EditUserSubaccountBaseServicesWebdisk.to_json())
# convert the object into a dict
edit_user_subaccount_base_services_webdisk_dict = edit_user_subaccount_base_services_webdisk_instance.to_dict()
# create an instance of EditUserSubaccountBaseServicesWebdisk from a dict
edit_user_subaccount_base_services_webdisk_from_dict = EditUserSubaccountBaseServicesWebdisk.from_dict(edit_user_subaccount_base_services_webdisk_dict)