class RecombeeApiClient::RemoveFromSeries
Removes an existing series item from the series.
Attributes
Public Class Methods
Source
# File lib/recombee_api_client/api/remove_from_series.rb, line 22 def initialize(series_id, item_type, item_id) @series_id = series_id @item_type = item_type @item_id = item_id @timeout = 3000 @ensure_https = false end
Public Instance Methods
Source
# File lib/recombee_api_client/api/remove_from_series.rb, line 36 def body_parameters p = Hash.new p['itemType'] = @item_type p['itemId'] = @item_id p end
Values of body parameters as a Hash
Source
# File lib/recombee_api_client/api/remove_from_series.rb, line 31 def method :delete end
HTTP method
Source
# File lib/recombee_api_client/api/remove_from_series.rb, line 51 def path "/{databaseId}/series/#{@series_id}/items/" end
Relative path to the endpoint
Source
# File lib/recombee_api_client/api/remove_from_series.rb, line 45 def query_parameters params = {} params end
Values of query parameters as a Hash. name of parameter => value of the parameter