Module Values_1.DocumentReviewerResponseSourceSource

Information about a reviewer's response to a document review request.

Sourcetype nonrec t = {
  1. createTime : Values_0.DateTime.t option;
    (*

    The date and time that a reviewer entered a response to a document review request.

    *)
  2. updatedTime : Values_0.DateTime.t option;
    (*

    The date and time that a reviewer last updated a response to a document review request.

    *)
  3. reviewStatus : Values_0.ReviewStatus.t option;
    (*

    The current review status of a new custom SSM document created by a member of your organization, or of the latest version of an existing SSM document. Only one version of a document can be in the APPROVED state at a time. When a new version is approved, the status of the previous version changes to REJECTED. Only one version of a document can be in review, or PENDING, at a time.

    *)
  4. comment : DocumentReviewCommentList.t option;
    (*

    The comment entered by a reviewer as part of their document review response.

    *)
  5. reviewer : Values_0.Reviewer.t option;
    (*

    The user in your organization assigned to review a document request.

    *)
}
Sourceval make : ?createTime:??? -> ?updatedTime:??? -> ?reviewStatus:??? -> ?comment:??? -> ?reviewer:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of DocumentReviewComment.t ]) list ] list | `String of Values_0.Reviewer.t | `Timestamp of Values_0.DateTime.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