Method: RTX::API::Collection#next

Defined in:
lib/rtx/api/collection.rb

#nextObject

For moving forward one page with the collection



72
73
74
75
76
77
# File 'lib/rtx/api/collection.rb', line 72

def next
  if has_next?
    page(options[:page] += 1)
  end
  self
end