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