@tomei/live-price
Version:
Tomei live-price Package
13 lines (12 loc) • 426 B
TypeScript
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;
}