24 lines
657 B
TypeScript
24 lines
657 B
TypeScript
/**
|
|
* Generated by orval v8.2.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { ApprovalReadPayload } from "./approvalReadPayload";
|
|
import type { ApprovalReadRubricScores } from "./approvalReadRubricScores";
|
|
import type { ApprovalReadStatus } from "./approvalReadStatus";
|
|
|
|
export interface ApprovalRead {
|
|
action_type: string;
|
|
task_id?: string | null;
|
|
payload?: ApprovalReadPayload;
|
|
confidence: number;
|
|
rubric_scores?: ApprovalReadRubricScores;
|
|
status?: ApprovalReadStatus;
|
|
id: string;
|
|
board_id: string;
|
|
agent_id?: string | null;
|
|
created_at: string;
|
|
resolved_at?: string | null;
|
|
}
|