Values.SnoozeAlarmActionRequestSourceInformation needed to snooze the alarm.
type nonrec t = {requestId : RequestId.t;The request ID. Each ID must be unique within each batch.
*)alarmModelName : AlarmModelName.t;The name of the alarm model.
*)keyValue : KeyValue.t option;The value of the key used as a filter to select only the alarms associated with the key.
*)note : Note.t option;The note that you can leave when you snooze the alarm.
*)snoozeDuration : SnoozeDuration.t;The snooze time in seconds. The alarm automatically changes to the NORMAL state after this duration.
*)}val make :
?keyValue:??? ->
?note:??? ->
requestId:RequestId.t ->
alarmModelName:AlarmModelName.t ->
snoozeDuration:SnoozeDuration.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Integer of SnoozeDuration.t | `String of RequestId.t ])
list ]