Screen Note Comment

Type: object

AttributeTypeDescription
idstringUnique id of the comment
contentstringContent of the comment
authorUser-
updatedintegerThe unix timestamp when the comment was updated
reactionsReaction[]Reactions to the comment
screen_version_idstring (Optional)The version of the screen this comment is associated with

Example

{
  "id": "5dbad85a89ea51c1f35bcffe",
  "author": {
    "id": "5d9caaecb4a3fa9bc9718686",
    "email": "[email protected]",
    "username": "zozo",
    "emotar": "🍎",
    "avatar": "http://placekitten.com/200/300",
    "last_seen": 1616739240
  },
  "content": "Hey ho! Let's go!",
  "updated": 1572347818,
  "reactions": [
    {
      "id": "5dbad85a89ea51c1f35bcffe",
      "short_code": "thumbsup",
      "unicode": "👍",
      "users": [
        {
          "id": "5d9caaecb4a3fa9bc9718686",
          "email": "[email protected]",
          "username": "zozo",
          "emotar": "🍎",
          "avatar": "http://placekitten.com/200/300",
          "last_seen": 1616739240
        }
      ]
    }
  ],
  "screen_version_id": "5dbad85a89ea51c1f35bcfff"
}