Interface ICalAlarmJSONData

interface ICalAlarmJSONData {
    attach: null | ICalAttachment;
    attendees: ICalAttendee[];
    description: null | string;
    interval: null | number;
    relatesTo: null | ICalAlarmRelatesTo;
    repeat: null | ICalAlarmRepeatData;
    summary: null | string;
    trigger: string | number;
    type: ICalAlarmType;
    x: { key: string; value: string }[];
}

Properties

attach: null | ICalAttachment
attendees: ICalAttendee[]
description: null | string
interval: null | number
relatesTo: null | ICalAlarmRelatesTo
repeat: null | ICalAlarmRepeatData
summary: null | string
trigger: string | number
x: { key: string; value: string }[]