Module Values_1.EvaluationReviewMetadataSource

Metadata information about an evaluation review.

Sourcetype nonrec t = {
  1. reviewId : Values_0.ResourceId.t option;
    (*

    The unique identifier for the evaluation review.

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

    The timestamp when the evaluation review was requested.

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

    The user who requested the evaluation review.

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

    The timestamp when the evaluation review was created.

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

    The user who created the evaluation review.

    *)
  6. reviewRequestComments : EvaluationReviewRequestCommentList.t option;
    (*

    Comments provided when requesting the evaluation review.

    *)
}
Sourceval make : ?reviewId:??? -> ?requestedTime:??? -> ?requestedBy:??? -> ?createdTime:??? -> ?createdBy:??? -> ?reviewRequestComments:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of EvaluationReviewRequestCommentContent.t | `Timestamp of Values_0.Timestamp.t ]) list ] list | `String of Values_0.ResourceId.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