Sha256: f52a2a938e40ae3b25517cc69c8bfbb60691a3b40879827a9ec71fee7882189d
Contents?: true
Size: 411 Bytes
Versions: 6
Compression:
Stored size: 411 Bytes
Contents
class InstaScrape::InstagramUser attr_accessor :username, :image, :post_count, :follower_count, :following_count, :description 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 end
Version data entries
6 entries across 6 versions & 1 rubygems