Module Values.UpdateCaseCommentRequestSource

Updates an existing case comment.

Sourcetype nonrec t = {
  1. caseId : CaseId.t;
    (*

    Required element for UpdateCaseComment to identify the case ID containing the comment to be updated.

    *)
  2. commentId : CommentId.t;
    (*

    Required element for UpdateCaseComment to identify the case ID to be updated.

    *)
  3. body : CommentBody.t;
    (*

    Required element for UpdateCaseComment to identify the content for the comment to be updated.

    *)
}
Sourceval context_ : string
Sourceval make : caseId:CaseId.t -> commentId:CommentId.t -> body:CommentBody.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CaseId.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