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 V3GlobaldataAssetCertificateListRawPostGlobals = { organizationId?: string | undefined; }; export type V3GlobaldataAssetCertificateListRawPostRequest = { /** * The ID of a Censys organization to associate the request with. If omitted, the request will be processed using the authenticated user's free wallet where applicable. 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; assetCertificateListInputBody: components.AssetCertificateListInputBody; }; export type V3GlobaldataAssetCertificateListRawPostResponse = { headers: { [k: string]: Array; }; result: components.ResponseEnvelopeListRawCertificateResponse; }; /** @internal */ export type V3GlobaldataAssetCertificateListRawPostRequest$Outbound = { organization_id?: string | undefined; AssetCertificateListInputBody: components.AssetCertificateListInputBody$Outbound; }; /** @internal */ export declare const V3GlobaldataAssetCertificateListRawPostRequest$outboundSchema: z.ZodType; export declare function v3GlobaldataAssetCertificateListRawPostRequestToJSON(v3GlobaldataAssetCertificateListRawPostRequest: V3GlobaldataAssetCertificateListRawPostRequest): string; /** @internal */ export declare const V3GlobaldataAssetCertificateListRawPostResponse$inboundSchema: z.ZodType; export declare function v3GlobaldataAssetCertificateListRawPostResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3globaldataassetcertificatelistrawpost.d.ts.map