Module Values.CaseRuleDetailsSource

Represents what rule type should take place, under what conditions. In the Amazon Connect admin website, case rules are known as case field conditions. For more information about case field conditions, see Add case field conditions to a case template.

Sourcetype nonrec t = {
  1. required : RequiredCaseRule.t option;
    (*

    Required rule type, used to indicate whether a field is required.

    *)
  2. fieldOptions : FieldOptionsCaseRule.t option;
    (*

    Which options are available in a child field based on the selected value in a parent field.

    *)
  3. hidden : HiddenCaseRule.t option;
    (*

    Whether a field is visible, based on values in other fields.

    *)
}
Sourceval make : ?required:??? -> ?fieldOptions:??? -> ?hidden:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * Awso.Botodata.value) list ]) 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