import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { NotificationTriggerDto } from "./notificationtriggerdto.js"; import { ResourceOriginEnum } from "./resourceoriginenum.js"; export type ActivityNotificationTemplateResponseDto = { /** * Unique identifier of the template */ id?: string | undefined; /** * Name of the template */ name: string; /** * Origin of the layout */ origin?: ResourceOriginEnum | undefined; /** * Triggers of the template */ triggers: Array; }; /** @internal */ export declare const ActivityNotificationTemplateResponseDto$inboundSchema: z.ZodType; export declare function activityNotificationTemplateResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=activitynotificationtemplateresponsedto.d.ts.map