import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3GlobaldataAssetCertificateRawGlobals = { organizationId?: string | undefined; }; export type V3GlobaldataAssetCertificateRawRequest = { /** * 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; /** * The SHA-256 certificate fingerprint. */ certificateId: string; }; export type V3GlobaldataAssetCertificateRawResponse = { headers: { [k: string]: Array; }; result: ReadableStream; }; /** @internal */ export type V3GlobaldataAssetCertificateRawRequest$Outbound = { organization_id?: string | undefined; certificate_id: string; }; /** @internal */ export declare const V3GlobaldataAssetCertificateRawRequest$outboundSchema: z.ZodType; export declare function v3GlobaldataAssetCertificateRawRequestToJSON(v3GlobaldataAssetCertificateRawRequest: V3GlobaldataAssetCertificateRawRequest): string; /** @internal */ export declare const V3GlobaldataAssetCertificateRawResponse$inboundSchema: z.ZodType; export declare function v3GlobaldataAssetCertificateRawResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3globaldataassetcertificateraw.d.ts.map