Instance list response
| 271 | |
| 272 | |
| 273 | class InstancesMessage(Message): |
| 274 | """Instance list response""" |
| 275 | |
| 276 | model_config = ConfigDict(frozen=True) |
| 277 | |
| 278 | type: Literal["INSTANCES"] = "INSTANCES" |
| 279 | id: str = "" |
| 280 | success: bool = True |
| 281 | data: dict[str, Any] = Field(default_factory=dict) |
| 282 | |
| 283 | |
| 284 | # Framing functions |
no outgoing calls