UNPKG

twilio

Version:
145 lines (144 loc) 6.03 kB
"use strict"; /* * This code was generated by * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ * * Twilio - Taskrouter * This is the public Twilio REST API. * * NOTE: This class is auto generated by OpenAPI Generator. * https://openapi-generator.tech * Do not edit the class manually. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.WorkersCumulativeStatisticsInstance = exports.WorkersCumulativeStatisticsContextImpl = void 0; exports.WorkersCumulativeStatisticsListInstance = WorkersCumulativeStatisticsListInstance; const util_1 = require("util"); const deserialize = require("../../../../../base/deserialize"); const serialize = require("../../../../../base/serialize"); const utility_1 = require("../../../../../base/utility"); class WorkersCumulativeStatisticsContextImpl { constructor(_version, workspaceSid) { this._version = _version; if (!(0, utility_1.isValidPathParam)(workspaceSid)) { throw new Error("Parameter 'workspaceSid' is not valid."); } this._solution = { workspaceSid }; this._uri = `/Workspaces/${workspaceSid}/Workers/CumulativeStatistics`; } fetch(params, callback) { if (params instanceof Function) { callback = params; params = {}; } else { params = params || {}; } let data = {}; if (params["endDate"] !== undefined) data["EndDate"] = serialize.iso8601DateTime(params["endDate"]); if (params["minutes"] !== undefined) data["Minutes"] = params["minutes"]; if (params["startDate"] !== undefined) data["StartDate"] = serialize.iso8601DateTime(params["startDate"]); if (params["taskChannel"] !== undefined) data["TaskChannel"] = params["taskChannel"]; const headers = {}; headers["Accept"] = "application/json"; const instance = this; let operationVersion = instance._version, operationPromise = operationVersion.fetch({ uri: instance._uri, method: "get", params: data, headers, }); operationPromise = operationPromise.then((payload) => new WorkersCumulativeStatisticsInstance(operationVersion, payload, instance._solution.workspaceSid)); operationPromise = instance._version.setPromiseCallback(operationPromise, callback); return operationPromise; } /** * Provide a user-friendly representation * * @returns Object */ toJSON() { return this._solution; } [util_1.inspect.custom](_depth, options) { return (0, util_1.inspect)(this.toJSON(), options); } } exports.WorkersCumulativeStatisticsContextImpl = WorkersCumulativeStatisticsContextImpl; class WorkersCumulativeStatisticsInstance { constructor(_version, payload, workspaceSid) { this._version = _version; this.accountSid = payload.account_sid; this.startTime = deserialize.iso8601DateTime(payload.start_time); this.endTime = deserialize.iso8601DateTime(payload.end_time); this.activityDurations = payload.activity_durations; this.reservationsCreated = deserialize.integer(payload.reservations_created); this.reservationsAccepted = deserialize.integer(payload.reservations_accepted); this.reservationsRejected = deserialize.integer(payload.reservations_rejected); this.reservationsTimedOut = deserialize.integer(payload.reservations_timed_out); this.reservationsCanceled = deserialize.integer(payload.reservations_canceled); this.reservationsRescinded = deserialize.integer(payload.reservations_rescinded); this.workspaceSid = payload.workspace_sid; this.url = payload.url; this._solution = { workspaceSid }; } get _proxy() { this._context = this._context || new WorkersCumulativeStatisticsContextImpl(this._version, this._solution.workspaceSid); return this._context; } fetch(params, callback) { return this._proxy.fetch(params, callback); } /** * Provide a user-friendly representation * * @returns Object */ toJSON() { return { accountSid: this.accountSid, startTime: this.startTime, endTime: this.endTime, activityDurations: this.activityDurations, reservationsCreated: this.reservationsCreated, reservationsAccepted: this.reservationsAccepted, reservationsRejected: this.reservationsRejected, reservationsTimedOut: this.reservationsTimedOut, reservationsCanceled: this.reservationsCanceled, reservationsRescinded: this.reservationsRescinded, workspaceSid: this.workspaceSid, url: this.url, }; } [util_1.inspect.custom](_depth, options) { return (0, util_1.inspect)(this.toJSON(), options); } } exports.WorkersCumulativeStatisticsInstance = WorkersCumulativeStatisticsInstance; function WorkersCumulativeStatisticsListInstance(version, workspaceSid) { if (!(0, utility_1.isValidPathParam)(workspaceSid)) { throw new Error("Parameter 'workspaceSid' is not valid."); } const instance = (() => instance.get()); instance.get = function get() { return new WorkersCumulativeStatisticsContextImpl(version, workspaceSid); }; instance._version = version; instance._solution = { workspaceSid }; instance._uri = ``; instance.toJSON = function toJSON() { return instance._solution; }; instance[util_1.inspect.custom] = function inspectImpl(_depth, options) { return (0, util_1.inspect)(instance.toJSON(), options); }; return instance; }