Interface TallyWorkspaceMemberDTO

Type definitions for workspace-related data

This module contains type definitions for workspaces, including workspace members, invites, and related data structures.

  • Defines the structure of workspaces and their properties
  • Includes types for workspace members and their roles
  • Supports workspace invitations and member management
  • Provides DTOs for creating, updating, and managing workspaces
interface TallyWorkspaceMemberDTO {
    avatarUrl: null | string;
    createdAt: string;
    email: string;
    firstName: string;
    fullName: string;
    hasTwoFactorEnabled: boolean;
    id: string;
    isDeleted: boolean;
    lastName: string;
    organizationId: string;
    subscriptionPlan: "FREE" | "PRO" | "BUSINESS";
    updatedAt: string;
}

Properties

avatarUrl: null | string
createdAt: string
email: string
firstName: string
fullName: string
hasTwoFactorEnabled: boolean
id: string
isDeleted: boolean
lastName: string
organizationId: string
subscriptionPlan: "FREE" | "PRO" | "BUSINESS"
updatedAt: string