Values.InvestigationFeedbackSourceRepresents user feedback for an investigation result. This structure captures the user's evaluation of the investigation's quality, usefulness, and any additional comments.
type nonrec t = {usefulness : UsefulnessRating.t option;User assessment of the investigation result's quality and helpfulness. This rating indicates how valuable the investigation findings were in addressing the case.
*)comment : FeedbackComment.t option;Optional user comments providing additional context about the investigation feedback. This allows users to explain their rating or provide suggestions for improvement.
*)submittedAt : Timestamp.t option;ISO 8601 timestamp when the feedback was submitted. This records when the user provided their assessment of the investigation results.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of FeedbackComment.t
| `Timestamp of Timestamp.t ])
list ]