/** * Webitel API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 24.04.0 * Contact: support@webitel.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { InlineObject3 } from '../api'; import { WfmCreateAgentsWorkingScheduleShiftsResponse } from '../api'; import { WfmSearchAgentsWorkingScheduleResponse } from '../api'; /** * AgentWorkingScheduleServiceApi - axios parameter creator * @export */ export declare const AgentWorkingScheduleServiceApiAxiosParamCreator: (configuration?: Configuration) => { /** * * @param {string} workingScheduleId * @param {InlineObject3} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createAgentsWorkingScheduleShifts: (workingScheduleId: string, body: InlineObject3, options?: any) => Promise; /** * * @param {string} workingScheduleId * @param {string} [dateFrom] * @param {string} [dateTo] * @param {Array} [supervisorId] * @param {Array} [teamId] * @param {Array} [skillId] * @param {string} [q] * @param {*} [options] Override http request option. * @throws {RequiredError} */ searchAgentsWorkingSchedule: (workingScheduleId: string, dateFrom?: string, dateTo?: string, supervisorId?: Array, teamId?: Array, skillId?: Array, q?: string, options?: any) => Promise; }; /** * AgentWorkingScheduleServiceApi - functional programming interface * @export */ export declare const AgentWorkingScheduleServiceApiFp: (configuration?: Configuration) => { /** * * @param {string} workingScheduleId * @param {InlineObject3} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createAgentsWorkingScheduleShifts(workingScheduleId: string, body: InlineObject3, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @param {string} workingScheduleId * @param {string} [dateFrom] * @param {string} [dateTo] * @param {Array} [supervisorId] * @param {Array} [teamId] * @param {Array} [skillId] * @param {string} [q] * @param {*} [options] Override http request option. * @throws {RequiredError} */ searchAgentsWorkingSchedule(workingScheduleId: string, dateFrom?: string, dateTo?: string, supervisorId?: Array, teamId?: Array, skillId?: Array, q?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * AgentWorkingScheduleServiceApi - factory interface * @export */ export declare const AgentWorkingScheduleServiceApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @param {string} workingScheduleId * @param {InlineObject3} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createAgentsWorkingScheduleShifts(workingScheduleId: string, body: InlineObject3, options?: any): AxiosPromise; /** * * @param {string} workingScheduleId * @param {string} [dateFrom] * @param {string} [dateTo] * @param {Array} [supervisorId] * @param {Array} [teamId] * @param {Array} [skillId] * @param {string} [q] * @param {*} [options] Override http request option. * @throws {RequiredError} */ searchAgentsWorkingSchedule(workingScheduleId: string, dateFrom?: string, dateTo?: string, supervisorId?: Array, teamId?: Array, skillId?: Array, q?: string, options?: any): AxiosPromise; }; /** * AgentWorkingScheduleServiceApi - object-oriented interface * @export * @class AgentWorkingScheduleServiceApi * @extends {BaseAPI} */ export declare class AgentWorkingScheduleServiceApi extends BaseAPI { /** * * @param {string} workingScheduleId * @param {InlineObject3} body * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof AgentWorkingScheduleServiceApi */ createAgentsWorkingScheduleShifts(workingScheduleId: string, body: InlineObject3, options?: any): Promise>; /** * * @param {string} workingScheduleId * @param {string} [dateFrom] * @param {string} [dateTo] * @param {Array} [supervisorId] * @param {Array} [teamId] * @param {Array} [skillId] * @param {string} [q] * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof AgentWorkingScheduleServiceApi */ searchAgentsWorkingSchedule(workingScheduleId: string, dateFrom?: string, dateTo?: string, supervisorId?: Array, teamId?: Array, skillId?: Array, q?: string, options?: any): Promise>; } //# sourceMappingURL=agent-working-schedule-service-api.d.ts.map