/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { ContactsPosition } from './contactsPosition'; import type { WebitelContactsLookup } from './webitelContactsLookup'; /** * Input message for creating/updating a condition. */ export interface ContactsInputCondition { /** The ID of the assignee that should be assigned if the condition is met (optional). */ assignee?: WebitelContactsLookup; /** The query or condition expression used to evaluate the group. */ expression?: string; /** The ID of the static group that should be assigned if the condition is met. */ group?: string; /** The position of the condition in the group. */ position?: ContactsPosition; }