Pipeline/frontend/src/api/generated/model/boardMemoryRead.ts

20 lines
378 B
TypeScript
Raw Normal View History

/**
* Generated by orval v8.3.0 🍺
* Do not edit manually.
* Mission Control API
* OpenAPI spec version: 0.1.0
*/
/**
* Serialized board memory entry returned from read endpoints.
*/
export interface BoardMemoryRead {
board_id: string;
content: string;
created_at: string;
id: string;
is_chat?: boolean;
source?: string | null;
tags?: string[] | null;
}