import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Links, Links$Outbound } from "./links.js"; import { Meta, Meta$Outbound } from "./meta.js"; import { Webhook, Webhook$Outbound } from "./webhook.js"; /** * Webhooks */ export type GetWebhooksResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; data: Array; /** * Response metadata */ meta?: Meta | undefined; /** * Links to navigate to previous or next pages through the API */ links?: Links | undefined; }; /** @internal */ export declare const GetWebhooksResponse$inboundSchema: z.ZodType; /** @internal */ export type GetWebhooksResponse$Outbound = { status_code: number; status: string; data: Array; meta?: Meta$Outbound | undefined; links?: Links$Outbound | undefined; }; /** @internal */ export declare const GetWebhooksResponse$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 GetWebhooksResponse$ { /** @deprecated use `GetWebhooksResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetWebhooksResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetWebhooksResponse$Outbound` instead. */ type Outbound = GetWebhooksResponse$Outbound; } export declare function getWebhooksResponseToJSON(getWebhooksResponse: GetWebhooksResponse): string; export declare function getWebhooksResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getwebhooksresponse.d.ts.map