/** * 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 { WebitelContactsDynamicCondition } from './webitel-contacts-dynamic-condition'; import { WebitelContactsGroupType } from './webitel-contacts-group-type'; import { WebitelContactsLookup } from './webitel-contacts-lookup'; /** * * @export * @interface WebitelContactsGroup */ export interface WebitelContactsGroup { /** * List of dynamic conditions associated with the group. * @type {Array} * @memberof WebitelContactsGroup */ conditions?: Array; /** * * @type {string} * @memberof WebitelContactsGroup */ contactsSize?: string; /** * Timestamp(milli) of the group\'s creation. * @type {string} * @memberof WebitelContactsGroup */ created_at?: string; /** * * @type {WebitelContactsLookup} * @memberof WebitelContactsGroup */ created_by?: WebitelContactsLookup; /** * * @type {WebitelContactsLookup} * @memberof WebitelContactsGroup */ default_group?: WebitelContactsLookup; /** * The description of the group. * @type {string} * @memberof WebitelContactsGroup */ description?: string; /** * * @type {boolean} * @memberof WebitelContactsGroup */ enabled?: boolean; /** * The unique ID of the group. Never changes. * @type {string} * @memberof WebitelContactsGroup */ id?: string; /** * The name of the group. * @type {string} * @memberof WebitelContactsGroup */ name?: string; /** * * @type {WebitelContactsGroupType} * @memberof WebitelContactsGroup */ type?: WebitelContactsGroupType; /** * Timestamp(milli) of the last group update. * @type {string} * @memberof WebitelContactsGroup */ updated_at?: string; /** * * @type {WebitelContactsLookup} * @memberof WebitelContactsGroup */ updated_by?: WebitelContactsLookup; } //# sourceMappingURL=webitel-contacts-group.d.ts.map