class Restforce::Collection

def next_page

Returns the next page as a Restforce::Collection if it's available, nil otherwise.
def next_page
  @next_page ||= @client.get(@raw_page['nextRecordsUrl']).body if has_next_page?
end