ICal.Alarm.Trigger (iCal v1.0.0)

View Source

An alarm trigger with when to fire the alarm on (a duration from the event or an absolute time), whether it is relative to the start or end of time of the event in the case of a duration offset, and how many times to repeat it after the first alarm.

Summary

Types

t()

@type t() :: %ICal.Alarm.Trigger{
  on: DateTime.t() | ICal.Duration.t(),
  relative_to: :start | :end | nil,
  repeat: non_neg_integer()
}