import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3ThreathuntingScansGetGlobals = { organizationId?: string | undefined; }; export type V3ThreathuntingScansGetRequest = { /** * The ID of a Censys organization to associate the request with. See the [Getting Started docs](https://docs.censys.com/reference/get-started#step-3-find-and-use-your-organization-id-optional) for more information. */ organizationId?: string | undefined; /** * The unique identifier of the tracked scan */ scanId: string; }; export type V3ThreathuntingScansGetResponse = { headers: { [k: string]: Array; }; result: components.ResponseEnvelopeTrackedScan; }; /** @internal */ export type V3ThreathuntingScansGetRequest$Outbound = { organization_id?: string | undefined; scan_id: string; }; /** @internal */ export declare const V3ThreathuntingScansGetRequest$outboundSchema: z.ZodType; export declare function v3ThreathuntingScansGetRequestToJSON(v3ThreathuntingScansGetRequest: V3ThreathuntingScansGetRequest): string; /** @internal */ export declare const V3ThreathuntingScansGetResponse$inboundSchema: z.ZodType; export declare function v3ThreathuntingScansGetResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3threathuntingscansget.d.ts.map