import { z } from 'zod'; /** * Zod schema for the InboxTokenResponse model. * Defines the structure and validation rules for this data type. * This is the shape used in application code - what developers interact with. */ export declare const inboxTokenResponse: z.ZodLazy>; createdAt: z.ZodString; discardedAt: z.ZodNullable>; id: z.ZodString; token: z.ZodString; updatedAt: z.ZodNullable>; }, "strip", z.ZodTypeAny, { createdAt: string; id: string; token: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; connectionId?: string | null | undefined; }, { createdAt: string; id: string; token: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; connectionId?: string | null | undefined; }>>; /** * * @typedef {InboxTokenResponse} inboxTokenResponse * @property {string} - Realtime connection ID to restrict delivery to a specific Ably connection. * @property {string} - The timestamp when the token was created. * @property {string} - The timestamp when the token was discarded, if applicable. * @property {string} - The unique identifier for the token. * @property {string} - The in-app inbox token generated for this user. * @property {string} - The timestamp when the token metadata last changed. */ export type InboxTokenResponse = z.infer; /** * Zod schema for mapping API responses to the InboxTokenResponse application shape. * Handles any property name transformations from the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const inboxTokenResponseResponse: z.ZodLazy>; created_at: z.ZodString; discarded_at: z.ZodNullable>; id: z.ZodString; token: z.ZodString; updated_at: z.ZodNullable>; }, "strip", z.ZodTypeAny, { id: string; created_at: string; token: string; updated_at?: string | null | undefined; discarded_at?: string | null | undefined; connection_id?: string | null | undefined; }, { id: string; created_at: string; token: string; updated_at?: string | null | undefined; discarded_at?: string | null | undefined; connection_id?: string | null | undefined; }>, { connectionId: string | null | undefined; createdAt: string; discardedAt: string | null | undefined; id: string; token: string; updatedAt: string | null | undefined; }, { id: string; created_at: string; token: string; updated_at?: string | null | undefined; discarded_at?: string | null | undefined; connection_id?: string | null | undefined; }>>; /** * Zod schema for mapping the InboxTokenResponse application shape to API requests. * Handles any property name transformations required by the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const inboxTokenResponseRequest: z.ZodLazy>; createdAt: z.ZodString; discardedAt: z.ZodNullable>; id: z.ZodString; token: z.ZodString; updatedAt: z.ZodNullable>; }, "strip", z.ZodTypeAny, { createdAt: string; id: string; token: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; connectionId?: string | null | undefined; }, { createdAt: string; id: string; token: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; connectionId?: string | null | undefined; }>, { connection_id: string | null | undefined; created_at: string; discarded_at: string | null | undefined; id: string; token: string; updated_at: string | null | undefined; }, { createdAt: string; id: string; token: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; connectionId?: string | null | undefined; }>>; //# sourceMappingURL=inbox-token-response.d.ts.map