Module Values.CreateCaseCommentRequestSource

Adds a comment to an existing case.

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

    Required element used in combination with CreateCaseComment to specify a case ID.

    *)
  2. clientToken : CreateCaseCommentRequestClientTokenString.t option;
    (*

    The clientToken field is an idempotency key used to ensure that repeated attempts for a single action will be ignored by the server during retries. A caller supplied unique ID (typically a UUID) should be provided.

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

    Required element used in combination with CreateCaseComment to add content for the new comment.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> caseId:CaseId.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