package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. content : string;
    (*

    The HTML-formatted content, suitable for display.

    *)
  2. objectType : string;
    (*

    The object type of this comment. Possible values are:

    • "comment" - A comment in reply to an activity.
    *)
  3. originalContent : string;
    (*

    The content (text) as provided by the author, stored without any HTML formatting. When creating or updating a comment, this value must be supplied as plain text in the request.

    *)
}
val content : (t, string) GapiLens.t
val objectType : (t, string) GapiLens.t
val originalContent : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t