class RecombeeApiClient::ListSeriesItems
List all the items present in the given series, sorted according to their time index values.
Attributes
ensure_https[RW]
series_id[R]
timeout[RW]
Public Class Methods
new(series_id)
click to toggle source
-
*Required arguments*
-
series_id
-> ID of the series items of which are to be listed.
-
# File lib/recombee_api_client/api/list_series_items.rb, line 20 def initialize(series_id) @series_id = series_id @timeout = 100000 @ensure_https = false end
Public Instance Methods
body_parameters()
click to toggle source
Values of body parameters as a Hash
# File lib/recombee_api_client/api/list_series_items.rb, line 32 def body_parameters p = Hash.new p end
method()
click to toggle source
HTTP method
# File lib/recombee_api_client/api/list_series_items.rb, line 27 def method :get end
path()
click to toggle source
Relative path to the endpoint
# File lib/recombee_api_client/api/list_series_items.rb, line 45 def path "/{databaseId}/series/#{@series_id}/items/" end
query_parameters()
click to toggle source
Values of query parameters as a Hash. name of parameter => value of the parameter
# File lib/recombee_api_client/api/list_series_items.rb, line 39 def query_parameters params = {} params end