Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 936 Bytes

ScoreCommentUpdate.md

File metadata and controls

24 lines (18 loc) · 936 Bytes

FlatApi::ScoreCommentUpdate

Properties

Name Type Description Notes
revision String The unique indentifier of the revision of the score where the comment was added. If this property is unspecified or contains "last", the API will automatically take the last revision created. [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 the mentions. If you use mentions, this property must be set. [optional]
context ScoreCommentContext [optional]

Example

require 'flat_api'

instance = FlatApi::ScoreCommentUpdate.new(
  revision: null,
  comment: null,
  raw_comment: null,
  context: null
)