/** * This file was auto-generated by Fern from our API Definition. */ import * as ElevenLabs from "../../../../index"; /** * @example * { * email: "john.doe@testmail.com" * } */ export interface InviteUserRequest { /** The email of the customer */ email: string; /** The group ids of the user */ group_ids?: string[]; /** The workspace permission of the user */ workspace_permission?: ElevenLabs.BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission; }