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 CreateWebhookResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; data: Webhook; }; /** @internal */ export declare const CreateWebhookResponse$inboundSchema: z.ZodType; /** @internal */ export type CreateWebhookResponse$Outbound = { status_code: number; status: string; data: Webhook$Outbound; }; /** @internal */ export declare const CreateWebhookResponse$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 CreateWebhookResponse$ { /** @deprecated use `CreateWebhookResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateWebhookResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateWebhookResponse$Outbound` instead. */ type Outbound = CreateWebhookResponse$Outbound; } export declare function createWebhookResponseToJSON(createWebhookResponse: CreateWebhookResponse): string; export declare function createWebhookResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createwebhookresponse.d.ts.map