import * as z from "zod/v3"; export type AffirmItineraryOptions = { /** * The type of itinerary object. */ type?: string | null | undefined; /** * The booking/itinerary number (if applicable). */ sku?: string | null | undefined; /** * Readable description of the itinerary item. */ displayName?: string | null | undefined; /** * The name of the venue where the event is hosted. */ venue?: string | null | undefined; /** * The address object that can be parsed. */ location?: string | null | undefined; /** * The start date of this itinerary item. */ dateStart?: string | null | undefined; /** * The corporation. */ management?: string | null | undefined; }; /** @internal */ export type AffirmItineraryOptions$Outbound = { type?: string | null | undefined; sku?: string | null | undefined; display_name?: string | null | undefined; venue?: string | null | undefined; location?: string | null | undefined; date_start?: string | null | undefined; management?: string | null | undefined; }; /** @internal */ export declare const AffirmItineraryOptions$outboundSchema: z.ZodType; export declare function affirmItineraryOptionsToJSON(affirmItineraryOptions: AffirmItineraryOptions): string; //# sourceMappingURL=affirmitineraryoptions.d.ts.map