AnalysisRawOutput
Properties
Name |
Type |
Description |
Notes |
raw_output |
str |
The raw output of the analysis. |
|
Example
from libica.openapi.v3.models.analysis_raw_output import AnalysisRawOutput
# TODO update the JSON string below
json = "{}"
# create an instance of AnalysisRawOutput from a JSON string
analysis_raw_output_instance = AnalysisRawOutput.from_json(json)
# print the JSON string representation of the object
print(AnalysisRawOutput.to_json())
# convert the object into a dict
analysis_raw_output_dict = analysis_raw_output_instance.to_dict()
# create an instance of AnalysisRawOutput from a dict
analysis_raw_output_from_dict = AnalysisRawOutput.from_dict(analysis_raw_output_dict)
[Back to Model list] [Back to API list] [Back to README]