Skip to content

Latest commit

 

History

History
66 lines (60 loc) · 2.18 KB

File metadata and controls

66 lines (60 loc) · 2.18 KB

FastCommentsClient::CommentData

Properties

Name Type Description Notes
date Integer [optional]
local_date_string String [optional]
local_date_hours Integer [optional]
commenter_name String
commenter_email String [optional]
commenter_link String [optional]
comment String
product_id Integer [optional]
user_id String [optional]
avatar_src String [optional]
parent_id String [optional]
mentions Array<CommentUserMentionInfo> [optional]
hash_tags Array<CommentUserHashTagInfo> [optional]
page_title String [optional]
is_from_my_account_page Boolean [optional]
url String
url_id String
meta Object [optional]
moderation_group_ids Array<String> [optional]
rating Float [optional]
from_offline_restore Boolean [optional]
autoplay_delay_ms Integer [optional]
feedback_ids Array<String> [optional]
question_values Hash<String, RecordStringStringOrNumberValue> Construct a type with a set of properties K of type T [optional]
tos Boolean [optional]

Example

require 'fastcomments-client'

instance = FastCommentsClient::CommentData.new(
  date: null,
  local_date_string: null,
  local_date_hours: null,
  commenter_name: null,
  commenter_email: null,
  commenter_link: null,
  comment: null,
  product_id: null,
  user_id: null,
  avatar_src: null,
  parent_id: null,
  mentions: null,
  hash_tags: null,
  page_title: null,
  is_from_my_account_page: null,
  url: null,
  url_id: null,
  meta: null,
  moderation_group_ids: null,
  rating: null,
  from_offline_restore: null,
  autoplay_delay_ms: null,
  feedback_ids: null,
  question_values: null,
  tos: null
)