import { ApplicationInboxId, ApplicationTeamId, ApplicationTeammateId } from './idTypesV2'; import { ApplicationPaginatedResults } from './paginationTypesV2'; export interface ApplicationInbox { /** Unique ID of the Inbox. */ id: ApplicationInboxId; /** ID of the team or teammate owning the inbox. */ ownerId: ApplicationTeamId | ApplicationTeammateId; /** Name of the inbox. */ name: string; /** Color of the inbox (hex format). */ color: string; } export type ApplicationInboxList = ApplicationPaginatedResults;