UNPKG

@tomei/live-price

Version:

Tomei live-price Package

19 lines (17 loc) 504 B
import { ManualPriceStatus, NonSourceFeedName, SourceFeedName, } from '../enum/feed.enum'; export interface IPriceFeedManualPriceHistoryAttr { FeedManualPriceHistoryId: string; FeedName: SourceFeedName | NonSourceFeedName; BuyPrice: number; SellPrice: number; Status: ManualPriceStatus; ActivationDateTime: Date; ActivatedById: string; DeactivationDateTime: Date; DeactivatedById: string; CompanyCode?: string; // Make CompanyCode optional for source feeds }