Module Values_2.UserSearchCriteria

The search criteria to be used to return users. The name and description fields support "contains" queries with a minimum of 2 characters and a maximum of 25 characters. Any queries with character lengths outside of this range will throw invalid results.

Sourcetype nonrec t = {
  1. orConditions : UserSearchConditionList.t option;
    (*

    A list of conditions which would be applied together with an OR condition.

    *)
  2. andConditions : UserSearchConditionList.t option;
    (*

    A list of conditions which would be applied together with an AND condition.

    *)
  3. stringCondition : Values_0.StringCondition.t option;
    (*

    A leaf node condition which can be used to specify a string condition. The currently supported values for FieldName are Username, FirstName, LastName, RoutingProfileId, SecurityProfileId, resourceId.

    *)
  4. listCondition : Values_1.ListCondition.t option;
    (*

    A leaf node condition which can be used to specify a List condition to search users with attributes included in Lists like Proficiencies.

    *)
  5. hierarchyGroupCondition : Values_0.HierarchyGroupCondition.t option;
    (*

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

    *)
}
Sourceval make : ?orConditions:UserSearchConditionList.t -> ?andConditions:UserSearchConditionList.t -> ?stringCondition:Values_0.StringCondition.t -> ?listCondition:Values_1.ListCondition.t -> ?hierarchyGroupCondition:Values_0.HierarchyGroupCondition.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t