import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PushSubscriptionDelivery, PushSubscriptionDelivery$Outbound } from "./pushsubscriptiondelivery.js"; /** * A response to a list push subscription deliveries method */ export type ListPushSubscriptionDeliveriesResponse = { /** * Page token used for pagination; Supplying a page token returns the next page of results */ nextPageToken?: string | undefined; /** * The returned collection of deliveries */ pushSubscriptionDeliveries?: Array | undefined; }; /** @internal */ export declare const ListPushSubscriptionDeliveriesResponse$inboundSchema: z.ZodType; /** @internal */ export type ListPushSubscriptionDeliveriesResponse$Outbound = { next_page_token?: string | undefined; push_subscription_deliveries?: Array | undefined; }; /** @internal */ export declare const ListPushSubscriptionDeliveriesResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ListPushSubscriptionDeliveriesResponse$ { /** @deprecated use `ListPushSubscriptionDeliveriesResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListPushSubscriptionDeliveriesResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListPushSubscriptionDeliveriesResponse$Outbound` instead. */ type Outbound = ListPushSubscriptionDeliveriesResponse$Outbound; } export declare function listPushSubscriptionDeliveriesResponseToJSON(listPushSubscriptionDeliveriesResponse: ListPushSubscriptionDeliveriesResponse): string; export declare function listPushSubscriptionDeliveriesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listpushsubscriptiondeliveriesresponse.d.ts.map