import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type OrganizationPreferences = { /** * Whether the organization has opted into AI features. */ aiOptIn?: boolean | undefined; /** * Whether the organization has opted into AI training. */ aiTraining?: boolean | undefined; /** * Whether the organization has opted into multi-factor authentication. */ mfaRequired?: boolean | undefined; }; /** @internal */ export declare const OrganizationPreferences$inboundSchema: z.ZodType; export declare function organizationPreferencesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=organizationpreferences.d.ts.map