Module Values.AcceptQualificationRequestRequestSource

The AcceptQualificationRequest operation approves a Worker's request for a Qualification. Only the owner of the Qualification type can grant a Qualification request for that type. A successful request for the AcceptQualificationRequest operation returns with no errors and an empty body.

Sourcetype nonrec t = {
  1. qualificationRequestId : String_.t;
    (*

    The ID of the Qualification request, as returned by the GetQualificationRequests operation.

    *)
  2. integerValue : Integer.t option;
    (*

    The value of the Qualification. You can omit this value if you are using the presence or absence of the Qualification as the basis for a HIT requirement.

    *)
}
Sourceval context_ : string
Sourceval make : ?integerValue:??? -> qualificationRequestId:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.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