Module Values.HiddenCaseRuleSource

A rule that controls field visibility based on conditions. Fields can be shown or hidden dynamically based on values in other fields.

Sourcetype nonrec t = {
  1. defaultValue : Boolean.t;
    (*

    Whether the field is hidden when no conditions match.

    *)
  2. conditions : BooleanConditionList.t;
    (*

    A list of conditions that determine field visibility.

    *)
}
Sourceval context_ : string
Sourceval make : defaultValue:Boolean.t -> conditions:BooleanConditionList.t -> 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