Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.83 KB

File metadata and controls

35 lines (26 loc) · 1.83 KB

InlineResponse200255ResultData

Properties

Name Type Description Notes
cmdline str Information about the FTP process, from the `ps` (process status) command. [optional]
file str The file that the session is processing. Note: The function returns a blank value if the session is idle. [optional]
host InlineResponse200255ResultDataHost [optional]
login str The FTP session login time. [optional]
pid int The session's PID. [optional]
status str The session's status. - `IDLE` - The session is connected, but idle. - `DL` - A download is in progress. - `UL` - An upload is in progress. [optional]
user str The FTP account username. [optional]

Example

from clientapi_cpanel.models.inline_response200255_result_data import InlineResponse200255ResultData

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

# convert the object into a dict
inline_response200255_result_data_dict = inline_response200255_result_data_instance.to_dict()
# create an instance of InlineResponse200255ResultData from a dict
inline_response200255_result_data_from_dict = InlineResponse200255ResultData.from_dict(inline_response200255_result_data_dict)

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