Module Values.SendFeedbackRequestSource

Send feedback based on response investigation action

Sourcetype nonrec t = {
  1. caseId : CaseId.t;
    (*

    Send feedback based on request caseID

    *)
  2. resultId : ResultId.t;
    (*

    Send feedback based on request result ID

    *)
  3. usefulness : UsefulnessRating.t;
    (*

    Required enum value indicating user assessment of result q.....

    *)
  4. comment : FeedbackComment.t option;
    (*

    Send feedback based on request comments

    *)
}
Sourceval context_ : string
Sourceval make : ?comment:??? -> caseId:CaseId.t -> resultId:ResultId.t -> usefulness:UsefulnessRating.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CaseId.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