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 V3CollectionsCrudCreateGlobals = { organizationId?: string | undefined; }; export type V3CollectionsCrudCreateRequest = { /** * 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; crudCreateInputBody?: components.CrudCreateInputBody | undefined; }; export type V3CollectionsCrudCreateResponse = { headers: { [k: string]: Array; }; result: components.ResponseEnvelopeCollection; }; /** @internal */ export type V3CollectionsCrudCreateRequest$Outbound = { organization_id?: string | undefined; CrudCreateInputBody?: components.CrudCreateInputBody$Outbound | undefined; }; /** @internal */ export declare const V3CollectionsCrudCreateRequest$outboundSchema: z.ZodType; export declare function v3CollectionsCrudCreateRequestToJSON(v3CollectionsCrudCreateRequest: V3CollectionsCrudCreateRequest): string; /** @internal */ export declare const V3CollectionsCrudCreateResponse$inboundSchema: z.ZodType; export declare function v3CollectionsCrudCreateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3collectionscrudcreate.d.ts.map