import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type InboxSubscriberResponseDto = { /** * Unique identifier of the subscriber */ id: string; /** * First name of the subscriber */ firstName?: string | undefined; /** * Last name of the subscriber */ lastName?: string | undefined; /** * Avatar URL of the subscriber */ avatar?: string | undefined; /** * External subscriber identifier */ subscriberId: string; }; /** @internal */ export declare const InboxSubscriberResponseDto$inboundSchema: z.ZodType; export declare function inboxSubscriberResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=inboxsubscriberresponsedto.d.ts.map