Class: DropboxApi::Endpoints::Files::SearchContinue

Inherits:
Rpc
  • Object
show all
Includes:
OptionsValidator
Defined in:
lib/dropbox_api/endpoints/files/search_continue.rb

Constant Summary collapse

Method =
:post
Path =
'/2/files/search/continue_v2'
ResultType =
DropboxApi::Results::SearchV2Result
ErrorType =
DropboxApi::Errors::SearchError

Instance Method Summary collapse

Methods included from OptionsValidator

#validate_options

Methods inherited from Rpc

#build_connection, #build_request, #request_body

Methods inherited from Base

add_endpoint, #initialize

Constructor Details

This class inherits a constructor from DropboxApi::Endpoints::Base

Instance Method Details

#search_continue(cursor) ⇒ Object

search:2. Used to fetch the next page of results.

Parameters:

  • cursor (String)

    The cursor returned by your last call to



19
20
21
# File 'lib/dropbox_api/endpoints/files/search_continue.rb', line 19

add_endpoint :search_continue do |cursor|
  perform_request cursor: cursor
end