mirror of https://github.com/ghostfolio/ghostfolio
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.
26 lines
753 B
26 lines
753 B
import { AssetClass, AssetSubClass, DataSource } from '@prisma/client';
|
|
|
|
import { Country } from './country.interface';
|
|
import { ScraperConfiguration } from './scraper-configuration.interface';
|
|
import { Sector } from './sector.interface';
|
|
|
|
export interface EnhancedSymbolProfile {
|
|
activitiesCount: number;
|
|
assetClass: AssetClass;
|
|
assetSubClass: AssetSubClass;
|
|
comment: string | null;
|
|
countries: Country[];
|
|
createdAt: Date;
|
|
currency: string | null;
|
|
dataSource: DataSource;
|
|
dateOfFirstActivity?: Date;
|
|
id: string;
|
|
isin: string | null;
|
|
name: string | null;
|
|
scraperConfiguration?: ScraperConfiguration | null;
|
|
sectors: Sector[];
|
|
symbol: string;
|
|
symbolMapping?: { [key: string]: string };
|
|
updatedAt: Date;
|
|
url?: string;
|
|
}
|
|
|