Module Values_1.EvaluationAcknowledgementSummarySource

Summary information about an evaluation acknowledgement.

Sourcetype nonrec t = {
  1. acknowledgedTime : Values_0.Timestamp.t option;
    (*

    The time when an agent acknowledged the evaluation.

    *)
  2. acknowledgedBy : Values_0.ARN.t option;
    (*

    The agent who acknowledged the evaluation.

    *)
  3. acknowledgerComment : EvaluationAcknowledgerCommentString.t option;
    (*

    A comment from the agent when they confirmed they acknowledged the evaluation.

    *)
}
Sourceval make : ?acknowledgedTime:??? -> ?acknowledgedBy:??? -> ?acknowledgerComment:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.ARN.t | `Timestamp of Values_0.Timestamp.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