
com.recombee.api_client.api_requests.RemoveFromSeries Maven / Gradle / Ivy
package com.recombee.api_client.api_requests;
/*
This file is auto-generated, do not edit
*/
import java.util.Date;
import java.util.Map;
import java.util.HashMap;
import com.recombee.api_client.util.HTTPMethod;
/**
* Removes an existing series item from the series.
*/
public class RemoveFromSeries extends Request {
/**
* ID of the series from which a series item is to be removed.
*/
protected String seriesId;
/**
* Type of the item to be removed.
*/
protected String itemType;
/**
* ID of the item iff `itemType` is `item`. ID of the series iff `itemType` is `series`.
*/
protected String itemId;
/**
* Time index of the item to be removed.
*/
protected Double time;
/**
* Construct the request
* @param seriesId ID of the series from which a series item is to be removed.
* @param itemType Type of the item to be removed.
* @param itemId ID of the item iff `itemType` is `item`. ID of the series iff `itemType` is `series`.
* @param time Time index of the item to be removed.
*/
public RemoveFromSeries (String seriesId,String itemType,String itemId,double time) {
this.seriesId = seriesId;
this.itemType = itemType;
this.itemId = itemId;
this.time = time;
this.timeout = 1000;
}
public String getSeriesId() {
return this.seriesId;
}
public String getItemType() {
return this.itemType;
}
public String getItemId() {
return this.itemId;
}
public double getTime() {
return this.time;
}
/**
* @return Used HTTP method
*/
@Override
public HTTPMethod getHTTPMethod() {
return HTTPMethod.DELETE;
}
/**
* @return URI to the endpoint including path parameters
*/
@Override
public String getPath() {
return String.format("/series/%s/items/", this.seriesId);
}
/**
* Get query parameters
* @return Values of query parameters (name of parameter: value of the parameter)
*/
@Override
public Map getQueryParameters() {
HashMap params = new HashMap();
params.put("itemType", this.itemType.toString());
params.put("itemId", this.itemId.toString());
params.put("time", this.time.toString());
return params;
}
/**
* Get body parameters
* @return Values of body parameters (name of parameter: value of the parameter)
*/
@Override
public Map getBodyParameters() {
HashMap params = new HashMap();
return params;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy