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 V3AccountmanagementInviteUserToOrgRequest = { /** * The ID of a Censys organization. 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; inviteMemberInputBody: components.InviteMemberInputBody; }; export type V3AccountmanagementInviteUserToOrgResponse = { headers: { [k: string]: Array; }; }; /** @internal */ export type V3AccountmanagementInviteUserToOrgRequest$Outbound = { organization_id: string; InviteMemberInputBody: components.InviteMemberInputBody$Outbound; }; /** @internal */ export declare const V3AccountmanagementInviteUserToOrgRequest$outboundSchema: z.ZodType; export declare function v3AccountmanagementInviteUserToOrgRequestToJSON(v3AccountmanagementInviteUserToOrgRequest: V3AccountmanagementInviteUserToOrgRequest): string; /** @internal */ export declare const V3AccountmanagementInviteUserToOrgResponse$inboundSchema: z.ZodType; export declare function v3AccountmanagementInviteUserToOrgResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3accountmanagementinviteusertoorg.d.ts.map