Module Values.ReactionForCommentSource

Information about the reaction values provided by users on a comment.

Sourcetype nonrec t = {
  1. reaction : ReactionValueFormats.t option;
    (*

    The reaction for a specified comment.

    *)
  2. reactionUsers : ReactionUsersList.t option;
    (*

    The Amazon Resource Names (ARNs) of users who have provided reactions to the comment.

    *)
  3. reactionsFromDeletedUsersCount : Count.t option;
    (*

    A numerical count of users who reacted with the specified emoji whose identities have been subsequently deleted from IAM. While these IAM users or roles no longer exist, the reactions might still appear in total reaction counts.

    *)
}
Sourceval make : ?reaction:??? -> ?reactionUsers:??? -> ?reactionsFromDeletedUsersCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Count.t | `List of [> `String of Arn.t ] list | `Structure of (string * [> `String of ReactionEmoji.t ]) list ]) 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