module Neows::Models::LinkNavigation

Public Instance Methods

next() click to toggle source

Request the objects next results

@return [self]

# File lib/neows/models/link_navigation.rb, line 19
def next
  perform_get(links.next, self.class)
end
prev() click to toggle source

Request the objects previous results

@return [self]

# File lib/neows/models/link_navigation.rb, line 26
def prev
  perform_get(links.prev, self.class)
end