Module Values_0.UserProficiencySource

Information about proficiency of a user.

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

    The name of user's proficiency. You must use name of predefined attribute present in the Amazon Connect instance.

    *)
  2. attributeValue : PredefinedAttributeStringValue.t;
    (*

    The value of user's proficiency. You must use value of predefined attribute present in the Amazon Connect instance.

    *)
  3. level : ProficiencyLevel.t;
    (*

    The level of the proficiency. The valid values are 1, 2, 3, 4 and 5.

    *)
}
Sourceval context_ : string
Sourceval make : attributeName:PredefinedAttributeName.t -> attributeValue:PredefinedAttributeStringValue.t -> level:ProficiencyLevel.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of ProficiencyLevel.t | `String of PredefinedAttributeName.t ]) 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