Module Values.SnoozeActionConfigurationSource

Contains the configuration information of a snooze action.

Sourcetype nonrec t = {
  1. snoozeDuration : SnoozeDuration.t option;
    (*

    The snooze time in seconds. The alarm automatically changes to the NORMAL state after this duration.

    *)
  2. note : Note.t option;
    (*

    The note that you can leave when you snooze the alarm.

    *)
}
Sourceval make : ?snoozeDuration:??? -> ?note:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of SnoozeDuration.t | `String of Note.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t