from dataclasses import dataclass @dataclass class Coze: """Represents a single Coze entity""" id: int name: str is_stopped: bool = False