Module Values.ReactionValueFormatsSource

Information about the values for reactions to a comment. CodeCommit supports a limited set of reactions.

Sourcetype nonrec t = {
  1. emoji : ReactionEmoji.t option;
    (*

    The Emoji Version 1.0 graphic of the reaction. These graphics are interpreted slightly differently on different operating systems.

    *)
  2. shortCode : ReactionShortCode.t option;
    (*

    The emoji short code for the reaction. Short codes are interpreted slightly differently on different operating systems.

    *)
  3. unicode : ReactionUnicode.t option;
    (*

    The Unicode codepoint for the reaction.

    *)
}
Sourceval make : ?emoji:??? -> ?shortCode:??? -> ?unicode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ReactionEmoji.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