# This file was generated by jschema_to_python version 1.2.3.

import attr


@attr.s
class Stack(object):
    """A call stack that is relevant to a result."""

    frames = attr.ib(metadata={"schema_property_name": "frames"})
    message = attr.ib(default=None, metadata={"schema_property_name": "message"})
    properties = attr.ib(default=None, metadata={"schema_property_name": "properties"})
