Information about the account's Web Disk status.
Name | Type | Description | Notes |
---|---|---|---|
enabled | int | Whether the account can access Web Disk. * `1` - Can access. * `0` - Cannot access. | [optional] |
homedir | str | The account's Web Disk directory. * A valid path, relative to the cPanel account's home directory. | [optional] |
perms | str | Whether to grant write permissions to the account. * `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_response200529_result_data_services_webdisk import InlineResponse200529ResultDataServicesWebdisk
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200529ResultDataServicesWebdisk from a JSON string
inline_response200529_result_data_services_webdisk_instance = InlineResponse200529ResultDataServicesWebdisk.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200529ResultDataServicesWebdisk.to_json())
# convert the object into a dict
inline_response200529_result_data_services_webdisk_dict = inline_response200529_result_data_services_webdisk_instance.to_dict()
# create an instance of InlineResponse200529ResultDataServicesWebdisk from a dict
inline_response200529_result_data_services_webdisk_from_dict = InlineResponse200529ResultDataServicesWebdisk.from_dict(inline_response200529_result_data_services_webdisk_dict)