Sha256: 7551e868984604e64b319346fa0efec4d8994e546300242d697f7dd2a23e28ee

Contents?: true

Size: 454 Bytes

Versions: 6

Compression:

Stored size: 454 Bytes

Contents

class InstaScrape::InstagramUserWithPosts
  attr_accessor :username, :image, :post_count, :follower_count, :following_count, :description, :posts
  def initialize(username, image, post_count, follower_count, following_count, description, posts)
    @username = username
    @image = image
    @post_count = post_count
    @follower_count = follower_count
    @following_count = following_count
    @description = description
    @posts = posts
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
insta_scrape-1.1.4 lib/models/instagram_user_with_posts.rb
insta_scrape-1.1.3 lib/models/instagram_user_with_posts.rb
insta_scrape-1.1.2 lib/models/instagram_user_with_posts.rb
insta_scrape-1.1.1 lib/models/instagram_user_with_posts.rb
insta_scrape-1.1.0 lib/models/instagram_user_with_posts.rb
insta_scrape-1.0.0 lib/models/instagram_user_with_posts.rb