import { BaseModel } from './BaseModel'; import { MissionTypes, RatingTypes } from '../enums'; export interface RatingReason extends BaseModel { parent: string | RatingReason; videoUri: string; title: string; description: string; missionTypes: MissionTypes[]; weight: number; type: RatingTypes; /** * @deprecated This field won't be used anymore. */ text: string; }