import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CalendarAttendee, CalendarAttendee$Outbound } from "./calendarattendee.js"; export type CalendarAttendees = { /** * Full details of some of the attendees of this event */ people?: Array | undefined; /** * Whether the total count of the people returned is at the retrieval limit. */ isLimit?: boolean | undefined; /** * Total number of attendees in this event. */ total?: number | undefined; /** * Total number of attendees who have accepted this event. */ numAccepted?: number | undefined; /** * Total number of attendees who have declined this event. */ numDeclined?: number | undefined; /** * Total number of attendees who have not responded to this event. */ numNoResponse?: number | undefined; /** * Total number of attendees who have responded tentatively (i.e. responded maybe) to this event. */ numTentative?: number | undefined; }; /** @internal */ export declare const CalendarAttendees$inboundSchema: z.ZodType; /** @internal */ export type CalendarAttendees$Outbound = { people?: Array | undefined; isLimit?: boolean | undefined; total?: number | undefined; numAccepted?: number | undefined; numDeclined?: number | undefined; numNoResponse?: number | undefined; numTentative?: number | undefined; }; /** @internal */ export declare const CalendarAttendees$outboundSchema: z.ZodType; export declare function calendarAttendeesToJSON(calendarAttendees: CalendarAttendees): string; export declare function calendarAttendeesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=calendarattendees.d.ts.map