@tomei/live-price
Version:
Tomei live-price Package
24 lines (21 loc) • 694 B
text/typescript
import { NonSourceFeedName } from '../enum/feed.enum';
import { IFeedHistoryAttr } from './price-feed-history-attr.interface';
export interface ITomeiPriceHistoryAttr {
TomeiPriceHistoryId?: string;
FeedHistoryId: string;
FeedName: NonSourceFeedName;
Currency: string;
DateTime: Date;
AdjustBuyPercentage: number;
AdjustSellPercentage: number;
TomeiBuyPrice: number;
TomeiSellPrice: number;
AdjustedById: string;
AdjustedDateTime: Date;
IsManualPriceActivatedYN: string;
BuyLabourCharges: number;
SellLabourCharges: number;
}
export interface ITomeiPriceHistoryFindAllAttr extends ITomeiPriceHistoryAttr {
FeedHistory: IFeedHistoryAttr;
}