Module Values_0.ParticipantTimerValueSource

The value of the timer. Either the timer action (Unset to delete the timer), or the duration of the timer in minutes. Only one value can be set. For more information about how chat timeouts work, see Set up chat timeouts for human participants.

Sourcetype nonrec t = {
  1. participantTimerAction : ParticipantTimerAction.t option;
    (*

    The timer action. Currently only one value is allowed: Unset. It deletes a timer.

    *)
  2. participantTimerDurationInMinutes : ParticipantTimerDurationInMinutes.t option;
    (*

    The duration of a timer, in minutes.

    *)
}
Sourceval make : ?participantTimerAction:??? -> ?participantTimerDurationInMinutes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of ParticipantTimerDurationInMinutes.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