import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SubscriberFeedResponseDto = { /** * The internal ID generated by Novu for your subscriber. This ID does not match the `subscriberId` used in your queries. Refer to `subscriberId` for that identifier. */ id?: string | undefined; /** * The first name of the subscriber. */ firstName?: string | undefined; /** * The last name of the subscriber. */ lastName?: string | undefined; /** * The URL of the subscriber's avatar image. */ avatar?: string | undefined; /** * The identifier used to create this subscriber, which typically corresponds to the user ID in your system. */ subscriberId: string; }; /** @internal */ export declare const SubscriberFeedResponseDto$inboundSchema: z.ZodType; export declare function subscriberFeedResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberfeedresponsedto.d.ts.map