import * as z from "zod"; import * as components from "../components/index.js"; export type AlertEventsV2NumberCreateHTTPRequest = { /** * Token used to authenticate the request, generated when configuring the alert source. Will be consumed via a URL query string parameter */ token?: string | undefined; /** * Which alert source config produced this alert */ alertSourceConfigId: string; createHTTPRequestBody: components.CreateHTTPRequestBody; }; /** @internal */ export declare const AlertEventsV2NumberCreateHTTPRequest$inboundSchema: z.ZodType; /** @internal */ export type AlertEventsV2NumberCreateHTTPRequest$Outbound = { token?: string | undefined; alert_source_config_id: string; CreateHTTPRequestBody: components.CreateHTTPRequestBody$Outbound; }; /** @internal */ export declare const AlertEventsV2NumberCreateHTTPRequest$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 AlertEventsV2NumberCreateHTTPRequest$ { /** @deprecated use `AlertEventsV2NumberCreateHTTPRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlertEventsV2NumberCreateHTTPRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AlertEventsV2NumberCreateHTTPRequest$Outbound` instead. */ type Outbound = AlertEventsV2NumberCreateHTTPRequest$Outbound; } //# sourceMappingURL=alerteventsv2numbercreatehttp.d.ts.map