Values.QualificationSourceThe Qualification data structure represents a Qualification assigned to a user, including the Qualification type and the value (score).
type nonrec t = {qualificationTypeId : EntityId.t option;The ID of the Qualification type for the Qualification.
*)workerId : CustomerId.t option;The ID of the Worker who possesses the Qualification.
*)grantTime : Timestamp.t option;The date and time the Qualification was granted to the Worker. If the Worker's Qualification was revoked, and then re-granted based on a new Qualification request, GrantTime is the date and time of the last call to the AcceptQualificationRequest operation.
*)integerValue : Integer.t option;The value (score) of the Qualification, if the Qualification has an integer value.
*)localeValue : Locale.t option;status : QualificationStatus.t option;The status of the Qualification. Valid values are Granted | Revoked.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of Integer.t
| `String of EntityId.t
| `Structure of (string * [> `String of CountryParameters.t ]) list
| `Timestamp of Timestamp.t ])
list ]