import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MemberCounts } from "./membercounts.js"; import { OrganizationPreferences } from "./organizationpreferences.js"; export type OrganizationDetails = { /** * The date and time the organization was created. */ createdAt?: Date | undefined; memberCounts?: MemberCounts | undefined; /** * The name of the organization. */ name: string; preferences?: OrganizationPreferences | undefined; /** * The ID of a Censys organization. */ uid: string; }; /** @internal */ export declare const OrganizationDetails$inboundSchema: z.ZodType; export declare function organizationDetailsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=organizationdetails.d.ts.map