19 lines
375 B
TypeScript
19 lines
375 B
TypeScript
/**
|
|
* Generated by orval v8.3.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
|
|
/**
|
|
* Serialized activity event payload returned by activity endpoints.
|
|
*/
|
|
export interface ActivityEventRead {
|
|
agent_id: string | null;
|
|
created_at: string;
|
|
event_type: string;
|
|
id: string;
|
|
message: string | null;
|
|
task_id: string | null;
|
|
}
|