class InstaScrape::InstagramUser

Attributes

description[RW]
follower_count[RW]
following_count[RW]
image[RW]
post_count[RW]
username[RW]

Public Class Methods

new(username, image, post_count, follower_count, following_count, description) click to toggle source
# File lib/models/instagram_user.rb, line 3
def initialize(username, image, post_count, follower_count, following_count, description)
  @username = username
  @image = image
  @post_count = post_count
  @follower_count = follower_count
  @following_count = following_count
  @description = description
end