Sha256: 041bde28b95618a4e0b33207129d047bba53deeb53761dcb5fdf38ecfde374b5

Contents?: true

Size: 334 Bytes

Versions: 46

Compression:

Stored size: 334 Bytes

Contents

module Braintree
  class PaginatedResult
    include BaseModule

    attr_reader :current_page
    attr_reader :page_size
    attr_reader :total_items

    def initialize(total_items, page_size, current_page) # :nodoc:
      @total_items = total_items
      @current_page = current_page
      @page_size = page_size
    end
  end
end

Version data entries

46 entries across 46 versions & 1 rubygems

Version Path
braintree-2.86.0 lib/braintree/paginated_result.rb
braintree-2.85.0 lib/braintree/paginated_result.rb
braintree-2.84.0 lib/braintree/paginated_result.rb
braintree-2.83.0 lib/braintree/paginated_result.rb
braintree-2.82.0 lib/braintree/paginated_result.rb
braintree-2.81.0 lib/braintree/paginated_result.rb