The subdirectory's privacy information.
Name | Type | Description | Notes |
---|---|---|---|
auth_name | str | The authentication resource name. | [optional] |
auth_type | str | The subdirectory's authentication type. * `Basic` * `None` | [optional] |
passwd_file | str | The absolute file path to the subdirectory's password file. | [optional] |
protected | int | Whether the subdirectory is protected. * `1` — Protected. * `0` — Not protected. | [optional] |
from clientapi_cpanel.models.inline_response200107_result_data_state import InlineResponse200107ResultDataState
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200107ResultDataState from a JSON string
inline_response200107_result_data_state_instance = InlineResponse200107ResultDataState.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200107ResultDataState.to_json())
# convert the object into a dict
inline_response200107_result_data_state_dict = inline_response200107_result_data_state_instance.to_dict()
# create an instance of InlineResponse200107ResultDataState from a dict
inline_response200107_result_data_state_from_dict = InlineResponse200107ResultDataState.from_dict(inline_response200107_result_data_state_dict)