Start structure run event StartStructureRunEvent Bases: BaseEvent Source code in griptape/griptape/events/start_structure_run_event.py 5 6 7 8 9 10@define class StartStructureRunEvent(BaseEvent): def to_dict(self) -> dict: from griptape.schemas import StartStructureRunEventSchema return dict(StartStructureRunEventSchema().dump(self)) to_dict() Source code in griptape/griptape/events/start_structure_run_event.py 7 8 9 10def to_dict(self) -> dict: from griptape.schemas import StartStructureRunEventSchema return dict(StartStructureRunEventSchema().dump(self))