15 lines
365 B
TypeScript
15 lines
365 B
TypeScript
/**
|
|
* Generated by orval v8.2.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { BoardOnboardingQuestionOption } from "./boardOnboardingQuestionOption";
|
|
|
|
export interface BoardOnboardingAgentQuestion {
|
|
/** @minLength 1 */
|
|
question: string;
|
|
/** @minItems 1 */
|
|
options: BoardOnboardingQuestionOption[];
|
|
}
|