import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CalendarAttendees, CalendarAttendees$Outbound } from "./calendarattendees.js"; export type Meeting = { id?: string | undefined; title?: string | undefined; description?: string | undefined; url?: string | undefined; startTime?: Date | undefined; endTime?: Date | undefined; attendees?: CalendarAttendees | undefined; /** * Whether the meeting has been cancelled */ isCancelled?: boolean | undefined; /** * The location/venue of the meeting */ location?: string | undefined; /** * The current user's response status (accepted, declined, tentativelyAccepted, none) */ responseStatus?: string | undefined; /** * The meeting join link (Teams, Zoom, etc.) */ conferenceUri?: string | undefined; /** * The conference provider (e.g., "Microsoft Teams", "Zoom") */ conferenceProvider?: string | undefined; }; /** @internal */ export declare const Meeting$inboundSchema: z.ZodType; /** @internal */ export type Meeting$Outbound = { id?: string | undefined; title?: string | undefined; description?: string | undefined; url?: string | undefined; startTime?: string | undefined; endTime?: string | undefined; attendees?: CalendarAttendees$Outbound | undefined; isCancelled?: boolean | undefined; location?: string | undefined; responseStatus?: string | undefined; conferenceUri?: string | undefined; conferenceProvider?: string | undefined; }; /** @internal */ export declare const Meeting$outboundSchema: z.ZodType; export declare function meetingToJSON(meeting: Meeting): string; export declare function meetingFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=meeting.d.ts.map