Interface TallyUserDTO

Type definitions for user-related data

This module contains type definitions for user information and related data structures. These types are used to represent user data in the Tally API.

  • Defines the structure of user profiles and their properties
  • Includes subscription plan information
  • Contains user authentication and security settings
  • Provides timestamps for user creation and updates
interface TallyUserDTO {
    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