/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ /** * ThreadKind defines the type of a thread. * It determines the business rules and available features for the thread. * * - UNKNOWN: Unknown or unspecified thread type. * Must not be used in valid requests. * - DIRECT: One-to-one private thread between two users. * - GROUP: Group thread with multiple members. * - CHANNEL: Channel-style thread (broadcast or topic based communication). */ export type WebitelImApiGatewayV1ThreadKind = (typeof WebitelImApiGatewayV1ThreadKind)[keyof typeof WebitelImApiGatewayV1ThreadKind]; export const WebitelImApiGatewayV1ThreadKind = { Unknown: 'UNKNOWN', Direct: 'DIRECT', Group: 'GROUP', Channel: 'CHANNEL', } as const;