33 lines
849 B
TypeScript
33 lines
849 B
TypeScript
/**
|
|
* Generated by orval v8.3.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { BoardReadSuccessMetrics } from "./boardReadSuccessMetrics";
|
|
|
|
/**
|
|
* Board payload returned from read endpoints.
|
|
*/
|
|
export interface BoardRead {
|
|
block_status_changes_with_pending_approval?: boolean;
|
|
board_group_id?: string | null;
|
|
board_type?: string;
|
|
created_at: string;
|
|
description: string;
|
|
gateway_id?: string | null;
|
|
goal_confirmed?: boolean;
|
|
goal_source?: string | null;
|
|
id: string;
|
|
name: string;
|
|
objective?: string | null;
|
|
only_lead_can_change_status?: boolean;
|
|
organization_id: string;
|
|
require_approval_for_done?: boolean;
|
|
require_review_before_done?: boolean;
|
|
slug: string;
|
|
success_metrics?: BoardReadSuccessMetrics;
|
|
target_date?: string | null;
|
|
updated_at: string;
|
|
}
|