import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Webhook, Webhook$Outbound } from "./webhook.js"; /** * Webhooks */ export type GetWebhookResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; data: Webhook; }; /** @internal */ export declare const GetWebhookResponse$inboundSchema: z.ZodType; /** @internal */ export type GetWebhookResponse$Outbound = { status_code: number; status: string; data: Webhook$Outbound; }; /** @internal */ export declare const GetWebhookResponse$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 GetWebhookResponse$ { /** @deprecated use `GetWebhookResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetWebhookResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetWebhookResponse$Outbound` instead. */ type Outbound = GetWebhookResponse$Outbound; } export declare function getWebhookResponseToJSON(getWebhookResponse: GetWebhookResponse): string; export declare function getWebhookResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getwebhookresponse.d.ts.map