Skip to content

Latest commit

 

History

History
48 lines (42 loc) · 2.15 KB

ScoreComment.md

File metadata and controls

48 lines (42 loc) · 2.15 KB

FlatApi::ScoreComment

Properties

Name Type Description Notes
id String The comment unique identifier [optional]
type String The type of the comment [optional]
user String The author unique identifier [optional]
score String The unique identifier of the score where the comment was posted [optional]
revision String The unique identifier of revision the comment was posted [optional]
reply_to String When the comment is a reply to another comment, the unique identifier of the parent comment [optional]
date Time The date when the comment was posted [optional]
modification_date Time The date of the last comment modification [optional]
comment String The comment text that can includes mentions using the following format: `@[id:username]`. [optional]
raw_comment String A raw version of the comment, that can be displayed without parsing the mentions. [optional]
context ScoreCommentContext [optional]
mentions Array<String> The list of user identifier mentioned on the score [optional]
resolved Boolean For inline comments, the comment can be marked as resolved and will be hidden in the future responses [optional]
resolved_by String If the user is marked as resolved, this will contain the unique identifier of the User who marked this comment as resolved [optional]
moderation ScoreCommentModeration [optional]
spam Boolean `true if the message has been detected as spam and hidden from other users [optional]

Example

require 'flat_api'

instance = FlatApi::ScoreComment.new(
  id: null,
  type: null,
  user: null,
  score: null,
  revision: null,
  reply_to: null,
  date: null,
  modification_date: null,
  comment: null,
  raw_comment: null,
  context: null,
  mentions: null,
  resolved: null,
  resolved_by: null,
  moderation: null,
  spam: null
)