Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.79 KB

InlineResponse20063ResultData.md

File metadata and controls

31 lines (22 loc) · 1.79 KB

InlineResponse20063ResultData

Properties

Name Type Description Notes
details List[InlineResponse20063ResultDataDetailsInner] The list of events recorded in the log. If you pass the `last_id` parameter, only records in the log after that id are returned. [optional]
log str Path to the disinfection log file. The log file will contain a list of JSON objects one per line. If the last line includes `"type":"done"`, the file disinfection is complete. [optional]
status str * `done` - The disinfection is finished. * `none` - There is no disinfection scheduled. * `queued` - The disinfection is queued. * `running` - The disinfection is in progress. [optional]

Example

from clientapi_cpanel.models.inline_response20063_result_data import InlineResponse20063ResultData

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

# convert the object into a dict
inline_response20063_result_data_dict = inline_response20063_result_data_instance.to_dict()
# create an instance of InlineResponse20063ResultData from a dict
inline_response20063_result_data_from_dict = InlineResponse20063ResultData.from_dict(inline_response20063_result_data_dict)

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