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.inline_response200535_result_data_services_webdisk import InlineResponse200535ResultDataServicesWebdisk
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200535ResultDataServicesWebdisk from a JSON string
inline_response200535_result_data_services_webdisk_instance = InlineResponse200535ResultDataServicesWebdisk.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200535ResultDataServicesWebdisk.to_json())
# convert the object into a dict
inline_response200535_result_data_services_webdisk_dict = inline_response200535_result_data_services_webdisk_instance.to_dict()
# create an instance of InlineResponse200535ResultDataServicesWebdisk from a dict
inline_response200535_result_data_services_webdisk_from_dict = InlineResponse200535ResultDataServicesWebdisk.from_dict(inline_response200535_result_data_services_webdisk_dict)