import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type EventType = { /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; /** * The ID of the object. */ id: string; /** * The name of the event type. */ name: string; /** * The label for the event type. */ label: string; /** * Property path to extract dynamic label from event metadata. */ labelPropertySelector?: string | null | undefined; /** * The ID of the organization owning the event type. */ organizationId: string; }; /** @internal */ export declare const EventType$inboundSchema: z.ZodMiniType; export declare function eventTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=eventtype.d.ts.map