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