Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.39 KB

InlineResponse200107ResultDataCurrent.md

File metadata and controls

31 lines (22 loc) · 1.39 KB

InlineResponse200107ResultDataCurrent

The user's current directory and its privacy information.

Properties

Name Type Description Notes
path str The current directory's path. [optional]
state InlineResponse200107ResultDataCurrentState [optional]

Example

from clientapi_cpanel.models.inline_response200107_result_data_current import InlineResponse200107ResultDataCurrent

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

# convert the object into a dict
inline_response200107_result_data_current_dict = inline_response200107_result_data_current_instance.to_dict()
# create an instance of InlineResponse200107ResultDataCurrent from a dict
inline_response200107_result_data_current_from_dict = InlineResponse200107ResultDataCurrent.from_dict(inline_response200107_result_data_current_dict)

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