Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 2.12 KB

File metadata and controls

33 lines (24 loc) · 2.12 KB

InlineResponse200527ResultDataAccountsServicesWebdisk

Information about the Subaccount's Web Disk status.

Properties

Name Type Description Notes
enabled int Whether the Subaccount can access Web Disk. * `1` — Has Web Disk service access. * `0` — Does not have Web Disk service access. [optional]
homedir str The Subaccount's Web Disk directory, relative to the cPanel account's home directory. [optional]
perms str Whether the Web Disk has read or read and write permissions. * `ro` — Read-only permissions. * `rw` — Read and write permissions. [optional]
private int Whether the Web Disk directory permissions are public or private. * `1` — Private (`0700`). * `0` — Public (`0755`). [optional]

Example

from clientapi_cpanel.models.inline_response200527_result_data_accounts_services_webdisk import InlineResponse200527ResultDataAccountsServicesWebdisk

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

# convert the object into a dict
inline_response200527_result_data_accounts_services_webdisk_dict = inline_response200527_result_data_accounts_services_webdisk_instance.to_dict()
# create an instance of InlineResponse200527ResultDataAccountsServicesWebdisk from a dict
inline_response200527_result_data_accounts_services_webdisk_from_dict = InlineResponse200527ResultDataAccountsServicesWebdisk.from_dict(inline_response200527_result_data_accounts_services_webdisk_dict)

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