Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.46 KB

File metadata and controls

30 lines (21 loc) · 1.46 KB

IdentificationtasksAnnotationsCreateValidationError

Properties

Name Type Description Notes
type str
errors List[IdentificationtasksAnnotationsCreateError]

Example

from mosquito_alert.models.identificationtasks_annotations_create_validation_error import IdentificationtasksAnnotationsCreateValidationError

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

# convert the object into a dict
identificationtasks_annotations_create_validation_error_dict = identificationtasks_annotations_create_validation_error_instance.to_dict()
# create an instance of IdentificationtasksAnnotationsCreateValidationError from a dict
identificationtasks_annotations_create_validation_error_from_dict = IdentificationtasksAnnotationsCreateValidationError.from_dict(identificationtasks_annotations_create_validation_error_dict)

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