/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { GeneralLookup } from './generalLookup.zod'; import type { UpdateRelatedCase2BodyPrimaryCase } from './updateRelatedCase2BodyPrimaryCase.zod'; import type { WebitelCasesRelationType } from './webitelCasesRelationType.zod'; export type UpdateRelatedCase2Body = { /** Primary case details. */ primaryCase?: UpdateRelatedCase2BodyPrimaryCase; /** Related case details. */ relatedCase?: GeneralLookup; /** Relation type. */ relationType?: WebitelCasesRelationType; /** Optional creator / updater ID. Use this to explicitly set the case creator / updater instead of deriving it from the auth token. */ userId?: GeneralLookup; };