/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ /** * Represents a source type for the source entity. * * - TYPE_UNSPECIFIED: Unspecified source type. * - CALL: Phone call source type. * - CHAT: Chat source type. * - SOCIAL_MEDIA: Social media source type. * - EMAIL: Email source type. * - API: API source type. * - MANUAL: Manual source type. */ export type WebitelCasesSourceType = (typeof WebitelCasesSourceType)[keyof typeof WebitelCasesSourceType]; export const WebitelCasesSourceType = { TypeUnspecified: 'TYPE_UNSPECIFIED', Call: 'CALL', Chat: 'CHAT', SocialMedia: 'SOCIAL_MEDIA', Email: 'EMAIL', Api: 'API', Manual: 'MANUAL', } as const;