UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

20 lines 610 B
import { QuestionsEnum } from './QuestionsEnum'; import { PossibleValue } from './PossibleValue'; /** Question to customer */ export interface Question { /** question description */ defaultValue?: string; /** question description */ description: string; /** available values for enum */ enumValues?: string[]; /** Possible customer questions */ name: QuestionsEnum; /** list of possible values */ possibleValues?: PossibleValue[]; /** is a required question */ required?: boolean; /** answer type */ type: string; } //# sourceMappingURL=Question.d.ts.map