Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

SimpleImportRsp.md

File metadata and controls

31 lines (22 loc) · 1.04 KB

SimpleImportRsp

Simple Import, response.

Properties

Name Type Description Notes
job_id int The job which was created for the run. 0 if called with dry_run option.
errors List[str] Validation errors, dry_run or not.

Example

from ecotaxa_py_client.models.simple_import_rsp import SimpleImportRsp

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

# convert the object into a dict
simple_import_rsp_dict = simple_import_rsp_instance.to_dict()
# create an instance of SimpleImportRsp from a dict
simple_import_rsp_form_dict = simple_import_rsp.from_dict(simple_import_rsp_dict)

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