Module Values_1.EvaluationReviewRequestCommentSource

A comment provided when requesting an evaluation review.

Sourcetype nonrec t = {
  1. comment : EvaluationReviewRequestCommentContent.t option;
    (*

    The text content of the review request comment.

    *)
  2. createdTime : Values_0.Timestamp.t option;
    (*

    The timestamp when the evaluation review request comment was created.

    *)
  3. createdBy : Values_0.ARN.t option;
    (*

    The user who created the evaluation review request comment.

    *)
}
Sourceval make : ?comment:??? -> ?createdTime:??? -> ?createdBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EvaluationReviewRequestCommentContent.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