/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { ContactsDynamicCondition } from './contactsDynamicCondition.zod'; import type { WebitelContactsLookup } from './webitelContactsLookup.zod'; export interface ContactsDynamicGroup { /** List of dynamic conditions associated with the group. */ conditions?: ContactsDynamicCondition[]; /** Timestamp(milli) of the group's creation. */ createdAt?: string; /** The user who created this dynamic group. */ createdBy?: WebitelContactsLookup; /** Default static group to be assigned if no conditions are met. */ defaultGroup?: WebitelContactsLookup; /** The description of the dynamic group. */ description?: string; /** Enabled status of the group: active or inactive. */ enabled?: boolean; /** The unique ID of the dynamic group. Never changes. */ id?: string; /** The name of the dynamic group. */ name?: string; /** Timestamp(milli) of the last group update. */ updatedAt?: string; /** The user who performed the last update. */ updatedBy?: WebitelContactsLookup; }