Module Values_0.ConditionSource

A leaf node condition which can be used to specify a ProficiencyName, ProficiencyValue and ProficiencyLimit.

Sourcetype nonrec t = {
  1. stringCondition : StringCondition.t option;
    (*

    A leaf node condition which can be used to specify a string condition. The currently supported values for FieldName are name and value.

    *)
  2. numberCondition : NumberCondition.t option;
    (*

    A leaf node condition which can be used to specify a numeric condition.

    *)
}
Sourceval make : ?stringCondition:??? -> ?numberCondition:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of NullableProficiencyLimitValue.t | `String of String_.t ]) 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