import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { NotificationTriggerVariable } from "./notificationtriggervariable.js"; /** * Type of the trigger */ export declare const NotificationTriggerDtoType: { readonly Event: "event"; }; /** * Type of the trigger */ export type NotificationTriggerDtoType = ClosedEnum; export type NotificationTriggerDto = { /** * Type of the trigger */ type: NotificationTriggerDtoType; /** * Identifier of the trigger */ identifier: string; /** * Variables of the trigger */ variables: Array; /** * Subscriber variables of the trigger */ subscriberVariables?: Array | undefined; }; /** @internal */ export declare const NotificationTriggerDtoType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const NotificationTriggerDto$inboundSchema: z.ZodType; export declare function notificationTriggerDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=notificationtriggerdto.d.ts.map