Module Values.TimerDefinitionSource

The new setting of a timer.

Sourcetype nonrec t = {
  1. name : TimerName.t;
    (*

    The name of the timer.

    *)
  2. seconds : Seconds.t;
    (*

    The new setting of the timer (the number of seconds before the timer elapses).

    *)
}
Sourceval context_ : string
Sourceval make : name:TimerName.t -> seconds:Seconds.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Seconds.t | `String of TimerName.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