Module Values_0.AgentHierarchyGroupsSource

A structure that defines search criteria for contacts using agent hierarchy group levels. For more information about agent hierarchies, see Set Up Agent Hierarchies in the Amazon Connect Administrator Guide.

Sourcetype nonrec t = {
  1. l1Ids : HierarchyGroupIdList.t option;
    (*

    The identifiers for level 1 hierarchy groups.

    *)
  2. l2Ids : HierarchyGroupIdList.t option;
    (*

    The identifiers for level 2 hierarchy groups.

    *)
  3. l3Ids : HierarchyGroupIdList.t option;
    (*

    The identifiers for level 3 hierarchy groups.

    *)
  4. l4Ids : HierarchyGroupIdList.t option;
    (*

    The identifiers for level 4 hierarchy groups.

    *)
  5. l5Ids : HierarchyGroupIdList.t option;
    (*

    The identifiers for level 5 hierarchy groups.

    *)
}
Sourceval make : ?l1Ids:??? -> ?l2Ids:??? -> ?l3Ids:??? -> ?l4Ids:??? -> ?l5Ids:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of HierarchyGroupId.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