UNPKG

@golemio/pid

Version:
16 lines (15 loc) 551 B
import { JISInfotextSeverityLevel } from "../../../../helpers/jis/JISInfotextSeverityLevelEnum"; import { IJISTranslationText } from "./IJISTranslationText"; export interface IJISInfotext { id: string; severity_level: JISInfotextSeverityLevel; display_type: string; active_period_start: Date; active_period_end: Date | null; description_text: IJISTranslationText; repeat_enabled: boolean; repeat_time_start: string | null; repeat_time_end: string | null; created_timestamp: Date; updated_timestamp: Date; }