import { JISInfotextSeverityLevel } from "../../../../helpers/jis/JISInfotextSeverityLevelEnum";
export interface IJISInfotextDto {
    id: string;
    severity_level: JISInfotextSeverityLevel;
    display_type: string;
    active_period_start: string;
    active_period_end: string | null;
    repeat_enabled?: boolean | null;
    repeat_time_start?: string | null;
    repeat_time_end?: string | null;
    description_text: {
        cs: string;
        en: string | null;
    };
    created_timestamp: string;
    updated_timestamp: string;
    stops: Array<{
        stop_id: string;
    }>;
}
