Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

PredictionRsp.md

File metadata and controls

32 lines (23 loc) · 1.16 KB

PredictionRsp

Prediction response.

Properties

Name Type Description Notes
errors List[str] Showstopper problems found while preparing the prediction. [optional] [default to []]
warnings List[str] Problems found while preparing the prediction. [optional] [default to []]
job_id int The created job, 0 if there were problems. [optional] [default to 0]

Example

from ecotaxa_py_client.models.prediction_rsp import PredictionRsp

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

# convert the object into a dict
prediction_rsp_dict = prediction_rsp_instance.to_dict()
# create an instance of PredictionRsp from a dict
prediction_rsp_form_dict = prediction_rsp.from_dict(prediction_rsp_dict)

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