Values.SubmitFeedbackRequestSourceThe structure representing the SubmitFeedbackRequest.
type nonrec t = {anomalyInstanceId : AnomalyInstanceId.t;The universally unique identifier (UUID) of the AnomalyInstance object that is included in the analysis data.
*)comment : String_.t option;Optional feedback about this anomaly.
*)profilingGroupName : ProfilingGroupName.t;The name of the profiling group that is associated with the analysis data.
*)type_ : FeedbackType.t;The feedback tpye. Thee are two valid values, Positive and Negative.
*)}val make :
?comment:??? ->
anomalyInstanceId:AnomalyInstanceId.t ->
profilingGroupName:ProfilingGroupName.t ->
type_:FeedbackType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of AnomalyInstanceId.t ]) list ]