import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Webhook, Webhook$Outbound } from "./webhook.js"; /** * Response from pinging a webhook. */ export type PingResponse = { /** * The webhook that was pinged. */ webhook: Webhook; /** * The request body sent to the target URL. It will contain an event type of `event.test` and an empty (null) data payload. */ requestBodySent: { [k: string]: any; }; /** * The response status code after sending a ping event to the URL. */ responseStatusCode: number; }; /** @internal */ export declare const PingResponse$inboundSchema: z.ZodType; /** @internal */ export type PingResponse$Outbound = { webhook: Webhook$Outbound; requestBodySent: { [k: string]: any; }; responseStatusCode: number; }; /** @internal */ export declare const PingResponse$outboundSchema: z.ZodType; export declare function pingResponseToJSON(pingResponse: PingResponse): string; export declare function pingResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pingresponse.d.ts.map