Type alias Mailbox

Mailbox: {
    id: Id;
    isSubscribed: boolean;
    myRights: MailboxRights;
    name: string;
    parentId: Id | null;
    role: MailboxRole;
    sortOrder?: number;
    totalEmails: number;
    totalThreads: number;
    unreadEmails: number;
    unreadThreads: number;
}

Type declaration

  • id: Id
  • isSubscribed: boolean
  • myRights: MailboxRights
  • name: string
  • parentId: Id | null
  • role: MailboxRole
  • Optional sortOrder?: number
  • totalEmails: number
  • totalThreads: number
  • unreadEmails: number
  • unreadThreads: number