The user's current directory and its indexing information.
| Name | Type | Description | Notes |
|---|---|---|---|
| path | str | The current directory's absolute path. | [optional] |
| state | InlineResponse200101ResultDataCurrentState | [optional] |
from clientapi_cpanel.models.inline_response200101_result_data_current import InlineResponse200101ResultDataCurrent
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200101ResultDataCurrent from a JSON string
inline_response200101_result_data_current_instance = InlineResponse200101ResultDataCurrent.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200101ResultDataCurrent.to_json())
# convert the object into a dict
inline_response200101_result_data_current_dict = inline_response200101_result_data_current_instance.to_dict()
# create an instance of InlineResponse200101ResultDataCurrent from a dict
inline_response200101_result_data_current_from_dict = InlineResponse200101ResultDataCurrent.from_dict(inline_response200101_result_data_current_dict)