UNPKG

@tomei/live-price

Version:

Tomei live-price Package

18 lines (16 loc) 433 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; }