Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.82 KB

File metadata and controls

32 lines (23 loc) · 1.82 KB

InlineResponse20063ResultDataDetailsInnerOneOf2

Properties

Name Type Description Notes
id float The task processing order. [optional]
message str Optional message that may include more information about errors. [optional]
state str The state of the step. It will be one of the following: * `error` - An error occurred while processing the file. * `info` - The message is information only. * `success` - The disinfection was successful. [optional]
type str * `done` - Record that the disinfection is complete for all files indicated.

Example

from clientapi_cpanel.models.inline_response20063_result_data_details_inner_one_of2 import InlineResponse20063ResultDataDetailsInnerOneOf2

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

# convert the object into a dict
inline_response20063_result_data_details_inner_one_of2_dict = inline_response20063_result_data_details_inner_one_of2_instance.to_dict()
# create an instance of InlineResponse20063ResultDataDetailsInnerOneOf2 from a dict
inline_response20063_result_data_details_inner_one_of2_from_dict = InlineResponse20063ResultDataDetailsInnerOneOf2.from_dict(inline_response20063_result_data_details_inner_one_of2_dict)

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