1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
# This file was generated by jschema_to_python version 1.2.3.
import attr
@attr.s
class Attachment(object):
"""An artifact relevant to a result."""
artifact_location = attr.ib(metadata={"schema_property_name": "artifactLocation"})
description = attr.ib(default=None, metadata={"schema_property_name": "description"})
properties = attr.ib(default=None, metadata={"schema_property_name": "properties"})
rectangles = attr.ib(default=None, metadata={"schema_property_name": "rectangles"})
regions = attr.ib(default=None, metadata={"schema_property_name": "regions"})
|