/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import * as zod from 'zod'; /** * @summary CreateMeeting creates a new meeting session with specific parameters and returns its URL. */ export declare const CreateMeetingBody: zod.ZodObject<{ basePath: zod.ZodOptional; domainId: zod.ZodOptional; expireSec: zod.ZodOptional; title: zod.ZodOptional; variables: zod.ZodOptional>; }, zod.z.core.$strip>; export declare const CreateMeetingResponse: zod.ZodObject<{ id: zod.ZodOptional; url: zod.ZodOptional; }, zod.z.core.$strip>; /** * @summary GetMeetingView retrieves public-facing information about a meeting. */ export declare const GetMeetingViewParams: zod.ZodObject<{ id: zod.ZodString; }, zod.z.core.$strip>; export declare const GetMeetingViewResponse: zod.ZodObject<{ allowSatisfaction: zod.ZodOptional; createdAt: zod.ZodOptional; expiresAt: zod.ZodOptional; satisfaction: zod.ZodOptional; title: zod.ZodOptional; }, zod.z.core.$strip>; /** * @summary SatisfactionMeeting submits feedback or a satisfaction rating for a completed meeting. */ export declare const SatisfactionMeetingParams: zod.ZodObject<{ id: zod.ZodString; }, zod.z.core.$strip>; export declare const SatisfactionMeetingBody: zod.ZodObject<{ satisfaction: zod.ZodOptional; }, zod.z.core.$strip>; export declare const SatisfactionMeetingResponse: zod.ZodObject<{}, zod.z.core.$loose>;