Module Values_0.AttributeConditionSource

An object to specify the predefined attribute condition.

Sourcetype nonrec t = {
  1. name : PredefinedAttributeName.t option;
    (*

    The name of predefined attribute.

    *)
  2. value : ProficiencyValue.t option;
    (*

    The value of predefined attribute.

    *)
  3. proficiencyLevel : NullableProficiencyLevel.t option;
    (*

    The proficiency level of the condition.

    *)
  4. range : Range.t option;
    (*

    An Object to define the minimum and maximum proficiency levels.

    *)
  5. matchCriteria : MatchCriteria.t option;
    (*

    An object to define AgentsCriteria.

    *)
  6. comparisonOperator : ComparisonOperator.t option;
    (*

    The operator of the condition.

    *)
}
Sourceval make : ?name:??? -> ?value:??? -> ?proficiencyLevel:??? -> ?range:??? -> ?matchCriteria:??? -> ?comparisonOperator:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of NullableProficiencyLevel.t | `String of PredefinedAttributeName.t | `Structure of (string * [> `Float of NullableProficiencyLevel.t | `Structure of (string * [> `List of [> `String of AgentId.t ] list ]) list ]) 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