recombee-api-client
Version:
Node.js client (SDK) for easy use of the Recombee recommendation API
58 lines (49 loc) • 1.72 kB
JavaScript
/*
This file is auto-generated, do not edit
*/
;
const rqs = require("./request");
/**
* Update definition of the Segment.
*/
class UpdateManualReqlSegment extends rqs.Request {
/**
* Construct the request
* @param {string} segmentationId - ID of the Segmentation to which the updated Segment belongs
* @param {string} segmentId - ID of the Segment that will be updated
* @param {string} filter - ReQL filter that returns `true` for items that belong to this Segment. Otherwise returns `false`.
* @param {Object} optional - Optional parameters given as an object with structure name of the parameter: value
* - Allowed parameters:
* - *title*
* - Type: string
* - Description: Human-readable name of the Segment that is shown in the Recombee Admin UI.
*/
constructor(segmentationId, segmentId, filter, optional) {
super('POST', `/segmentations/manual-reql/${segmentationId}/segments/${segmentId}`, 10000, false);
this.segmentationId = segmentationId;
this.segmentId = segmentId;
this.filter = filter;
optional = optional || {};
this.title = optional.title;
}
/**
* Get body parameters
* @return {Object} The values of body parameters (name of parameter: value of the parameter)
*/
bodyParameters() {
let params = {};
params.filter = this.filter;
if(this.title !== undefined)
params.title = this.title;
return params;
}
/**
* Get query parameters
* @return {Object} The values of query parameters (name of parameter: value of the parameter)
*/
queryParameters() {
let params = {};
return params;
}
}
exports.UpdateManualReqlSegment = UpdateManualReqlSegment