Sha256: afc088ee44662d64c3f7cef42f3f6c85ad32ab389b998b07783c56b0a5d68412

Contents?: true

Size: 368 Bytes

Versions: 5

Compression:

Stored size: 368 Bytes

Contents

module Tangany
  class Collection
    attr_reader :data, :next_page_token, :next_path, :previous_path, :total

    def initialize(data:, total:, next_page_token: nil, next_path: nil, previous_path: nil)
      @data = data
      @next_page_token = next_page_token
      @next_path = next_path
      @previous_path = previous_path
      @total = total
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tangany-0.0.5 lib/tangany/collection.rb
tangany-0.0.4 lib/tangany/collection.rb
tangany-0.0.3 lib/tangany/collection.rb
tangany-0.0.2 lib/tangany/collection.rb
tangany-0.0.1 lib/tangany/collection.rb