Module Values_1.DocumentReviewCommentSourceSource

Information about comments added to a document review request.

Sourcetype nonrec t = {
  1. type_ : DocumentReviewCommentType.t option;
    (*

    The type of information added to a review request. Currently, only the value Comment is supported.

    *)
  2. content : DocumentReviewComment.t option;
    (*

    The content of a comment entered by a user who requests a review of a new document version, or who reviews the new version.

    *)
}
Sourceval make : ?type_:??? -> ?content:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DocumentReviewComment.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