import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ActivityNotificationSubscriberResponseDto = { /** * First name of the subscriber */ firstName?: string | undefined; /** * External unique identifier of the subscriber */ subscriberId: string; /** * Internal to Novu unique identifier of the subscriber */ id: string; /** * Last name of the subscriber */ lastName?: string | undefined; /** * Email address of the subscriber */ email?: string | undefined; /** * Phone number of the subscriber */ phone?: string | undefined; }; /** @internal */ export declare const ActivityNotificationSubscriberResponseDto$inboundSchema: z.ZodType; export declare function activityNotificationSubscriberResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=activitynotificationsubscriberresponsedto.d.ts.map