23 lines
491 B
TypeScript
23 lines
491 B
TypeScript
/**
|
|
* Generated by orval v8.3.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
|
|
/**
|
|
* Denormalized task-comment feed item enriched with task and board fields.
|
|
*/
|
|
export interface ActivityTaskCommentFeedItemRead {
|
|
agent_id: string | null;
|
|
agent_name?: string | null;
|
|
agent_role?: string | null;
|
|
board_id: string;
|
|
board_name: string;
|
|
created_at: string;
|
|
id: string;
|
|
message: string | null;
|
|
task_id: string;
|
|
task_title: string;
|
|
}
|