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 V3CollectionsCrudGetGlobals = { organizationId?: string | undefined; }; export type V3CollectionsCrudGetRequest = { /** * 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 UID for the collection. Obtain the collection ID using the [list collections endpoint](https://docs.censys.com/reference/v3-collections-crud-list#/) or via the collection URL when using the web console. */ collectionUid: string; }; export type V3CollectionsCrudGetResponse = { headers: { [k: string]: Array; }; result: components.ResponseEnvelopeCollection; }; /** @internal */ export type V3CollectionsCrudGetRequest$Outbound = { organization_id?: string | undefined; collection_uid: string; }; /** @internal */ export declare const V3CollectionsCrudGetRequest$outboundSchema: z.ZodType; export declare function v3CollectionsCrudGetRequestToJSON(v3CollectionsCrudGetRequest: V3CollectionsCrudGetRequest): string; /** @internal */ export declare const V3CollectionsCrudGetResponse$inboundSchema: z.ZodType; export declare function v3CollectionsCrudGetResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3collectionscrudget.d.ts.map