Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 847 Bytes

File metadata and controls

34 lines (28 loc) · 847 Bytes

Unifapi::RedditUser

Properties

Name Type Description Notes
id String Reddit username (URL slug).
user_t2_id String Reddit internal user id (`t2_*` fullname).
name String
prefixed_name String Display form like `u/spez`.
karma_total Float
karma_from_posts Float
karma_from_comments Float
is_verified Boolean
is_employee Boolean

Example

require 'unifapi'

instance = Unifapi::RedditUser.new(
  id: null,
  user_t2_id: null,
  name: null,
  prefixed_name: null,
  karma_total: null,
  karma_from_posts: null,
  karma_from_comments: null,
  is_verified: null,
  is_employee: null
)