Values_0.UserProficiencySourceInformation about proficiency of a user.
type nonrec t = {attributeName : PredefinedAttributeName.t;The name of user's proficiency. You must use name of predefined attribute present in the Amazon Connect instance.
*)attributeValue : PredefinedAttributeStringValue.t;The value of user's proficiency. You must use value of predefined attribute present in the Amazon Connect instance.
*)level : ProficiencyLevel.t;The level of the proficiency. The valid values are 1, 2, 3, 4 and 5.
*)}val make :
attributeName:PredefinedAttributeName.t ->
attributeValue:PredefinedAttributeStringValue.t ->
level:ProficiencyLevel.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Float of ProficiencyLevel.t
| `String of PredefinedAttributeName.t ])
list ]