import type * as ElevenLabs from "../index"; /** * Public workspace member fields exposed via GET /v1/workspace/members. */ export interface WorkspaceMemberResponseModel { /** The user ID of the workspace member. */ userId: string; /** The email address of the workspace member. */ email: string; /** The first name of the workspace member, if available. */ firstName?: string; /** The seat type (role) of the workspace member. */ seatType?: ElevenLabs.SeatType; /** Whether the member is the workspace owner. */ isOwner: boolean; /** Whether the member's account is locked in this workspace. */ isLocked: boolean; }