You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
566 B

import { AssetClass, AssetSubClass, DataSource } from '@prisma/client';
export interface AssetProfileItem {
activitiesCount: number;
assetClass?: AssetClass;
assetSubClass?: AssetSubClass;
comment?: string;
countriesCount: number;
currency: string;
dataSource: DataSource;
date: Date;
id: string;
isActive: boolean;
isBenchmark?: boolean;
isin?: string;
isUsedByUsersWithSubscription?: boolean;
lastMarketPrice: number;
marketDataItemCount: number;
name: string;
sectorsCount: number;
symbol: string;
watchedByCount: number;
}