@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 518 B
TypeScript
import { AnswerAllowedValue } from './AnswerAllowedValue';
import { AnswerTypeEnum } from './AnswerTypeEnum';
/** Question description for a churn form */
export interface Question {
/** List of available values for answer */
answers?: AnswerAllowedValue[];
/** Is the Question mandatory for the form ? */
mandatory: boolean;
/** Question name */
question: string;
/** Type of the expected answer : text, enum, number... */
type: AnswerTypeEnum;
}
//# sourceMappingURL=Question.d.ts.map