class RecombeeApiClient::DeleteSeries
Deletes the series of given `seriesId` from the database.
Deleting a series will only delete assignment of items to it, not the items themselves!
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 to be deleted.
-
# File lib/recombee_api_client/api/delete_series.rb, line 23 def initialize(series_id) @series_id = series_id @timeout = 1000 @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/delete_series.rb, line 35 def body_parameters p = Hash.new p end
method()
click to toggle source
HTTP method
# File lib/recombee_api_client/api/delete_series.rb, line 30 def method :delete end
path()
click to toggle source
Relative path to the endpoint
# File lib/recombee_api_client/api/delete_series.rb, line 48 def path "/{databaseId}/series/#{@series_id}" 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/delete_series.rb, line 42 def query_parameters params = {} params end