UNPKG

@mediavine/recombee-api-client

Version:

Node.js client (SDK) for easy use of the Recombee recommendation API

41 lines (33 loc) 790 B
/* This file is auto-generated, do not edit */ 'use strict'; const rqs = require("./request"); /** * Gets the list of all the user properties in your database. */ class ListUserProperties extends rqs.Request { /** * Construct the request */ constructor() { super('GET', '/users/properties/list/', 100000, false); } /** * Get body parameters * @return {Object} The values of body parameters (name of parameter: value of the parameter) */ bodyParameters() { let params = {}; 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.ListUserProperties = ListUserProperties