/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 0b9d0f42b5f4 */ import * as z from "zod/v4"; export type GetEventGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type GetEventRequest = { /** * Unique identifier for the event. */ id: string; }; /** @internal */ export type GetEventRequest$Outbound = { id: string; }; /** @internal */ export const GetEventRequest$outboundSchema: z.ZodType< GetEventRequest$Outbound, GetEventRequest > = z.object({ id: z.string(), }); export function getEventRequestToJSON( getEventRequest: GetEventRequest, ): string { return JSON.stringify(GetEventRequest$outboundSchema.parse(getEventRequest)); }