Module Values_0.StepSource

Step signifies the criteria to be used for routing to an agent

Sourcetype nonrec t = {
  1. expiry : Expiry.t option;
    (*

    An object to specify the expiration of a routing step.

    *)
  2. expression : Expression.t option;
    (*

    A tagged union to specify expression for a routing step.

    *)
  3. status : RoutingCriteriaStepStatus.t option;
    (*

    Represents status of the Routing step.

    *)
}
Sourceval make : ?expiry:??? -> ?expression:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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