/** * 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 { WebitelContactsIMClientList } from '../api'; /** * IMClientsApi - axios parameter creator * @export */ export declare const IMClientsApiAxiosParamCreator: (configuration?: Configuration) => { /** * * @param {string} contactId * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteIMClient: (contactId: string, id: string, options?: any) => Promise; /** * * @summary Search IM client links * @param {string} contactId Link contact ID. * @param {number} [page] Page number of result dataset records. offset = (page*size) * @param {number} [size] Size count of records on result page. limit = (size++) * @param {string} [q] Search term: IMClient. `?` - matches any one character `*` - matches 0 or more characters Search fields: {user,app} * @param {Array} [sort] Sort the result according to fields. * @param {Array} [fields] Fields to be retrieved into result. * @param {Array} [id] Link(s) with unique ID only. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listIMClients: (contactId: string, page?: number, size?: number, q?: string, sort?: Array, fields?: Array, id?: Array, options?: any) => Promise; }; /** * IMClientsApi - functional programming interface * @export */ export declare const IMClientsApiFp: (configuration?: Configuration) => { /** * * @param {string} contactId * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteIMClient(contactId: string, id: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Search IM client links * @param {string} contactId Link contact ID. * @param {number} [page] Page number of result dataset records. offset = (page*size) * @param {number} [size] Size count of records on result page. limit = (size++) * @param {string} [q] Search term: IMClient. `?` - matches any one character `*` - matches 0 or more characters Search fields: {user,app} * @param {Array} [sort] Sort the result according to fields. * @param {Array} [fields] Fields to be retrieved into result. * @param {Array} [id] Link(s) with unique ID only. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listIMClients(contactId: string, page?: number, size?: number, q?: string, sort?: Array, fields?: Array, id?: Array, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * IMClientsApi - factory interface * @export */ export declare const IMClientsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @param {string} contactId * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteIMClient(contactId: string, id: string, options?: any): AxiosPromise; /** * * @summary Search IM client links * @param {string} contactId Link contact ID. * @param {number} [page] Page number of result dataset records. offset = (page*size) * @param {number} [size] Size count of records on result page. limit = (size++) * @param {string} [q] Search term: IMClient. `?` - matches any one character `*` - matches 0 or more characters Search fields: {user,app} * @param {Array} [sort] Sort the result according to fields. * @param {Array} [fields] Fields to be retrieved into result. * @param {Array} [id] Link(s) with unique ID only. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listIMClients(contactId: string, page?: number, size?: number, q?: string, sort?: Array, fields?: Array, id?: Array, options?: any): AxiosPromise; }; /** * IMClientsApi - object-oriented interface * @export * @class IMClientsApi * @extends {BaseAPI} */ export declare class IMClientsApi extends BaseAPI { /** * * @param {string} contactId * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof IMClientsApi */ deleteIMClient(contactId: string, id: string, options?: any): Promise>; /** * * @summary Search IM client links * @param {string} contactId Link contact ID. * @param {number} [page] Page number of result dataset records. offset = (page*size) * @param {number} [size] Size count of records on result page. limit = (size++) * @param {string} [q] Search term: IMClient. `?` - matches any one character `*` - matches 0 or more characters Search fields: {user,app} * @param {Array} [sort] Sort the result according to fields. * @param {Array} [fields] Fields to be retrieved into result. * @param {Array} [id] Link(s) with unique ID only. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof IMClientsApi */ listIMClients(contactId: string, page?: number, size?: number, q?: string, sort?: Array, fields?: Array, id?: Array, options?: any): Promise>; } //# sourceMappingURL=imclients-api.d.ts.map