class Ayadn::UserCountsObject

Attributes

followers[R]
following[R]
input[R]
posts[R]
stars[R]

Public Class Methods

new(hash) click to toggle source
# File lib/ayadn/user_object.rb, line 23
def initialize hash
  @input = hash["counts"]
  @following = @input["following"]
  @posts = @input["posts"]
  @followers = @input["followers"]
  @stars = @input["stars"]
end