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 V3GlobaldataAssetCertificateGlobals = { organizationId?: string | undefined; }; export type V3GlobaldataAssetCertificateRequest = { /** * 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 V3GlobaldataAssetCertificateResponse = { headers: { [k: string]: Array; }; result: components.ResponseEnvelopeCertificateAsset; }; /** @internal */ export type V3GlobaldataAssetCertificateRequest$Outbound = { organization_id?: string | undefined; certificate_id: string; }; /** @internal */ export declare const V3GlobaldataAssetCertificateRequest$outboundSchema: z.ZodType; export declare function v3GlobaldataAssetCertificateRequestToJSON(v3GlobaldataAssetCertificateRequest: V3GlobaldataAssetCertificateRequest): string; /** @internal */ export declare const V3GlobaldataAssetCertificateResponse$inboundSchema: z.ZodType; export declare function v3GlobaldataAssetCertificateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3globaldataassetcertificate.d.ts.map