21 lines
510 B
TypeScript
21 lines
510 B
TypeScript
/**
|
|
* Generated by orval v8.2.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { BoardCreateSuccessMetrics } from "./boardCreateSuccessMetrics";
|
|
|
|
export interface BoardCreate {
|
|
name: string;
|
|
slug: string;
|
|
gateway_id: string;
|
|
board_group_id?: string | null;
|
|
board_type?: string;
|
|
objective?: string | null;
|
|
success_metrics?: BoardCreateSuccessMetrics;
|
|
target_date?: string | null;
|
|
goal_confirmed?: boolean;
|
|
goal_source?: string | null;
|
|
}
|