type Response = Array<{
pairTo: string;
pairFrom: string;
pairId: string;
oid: string;
pid: string;
trader: string;
side: 'B' | 'S';
action: 'Open' | 'Close' | 'Liquidation' | 'StopLoss' | 'TakeProfit' | 'RemoveCollateral' | 'CloseDayTrade';
type: 'Market' | 'Limit' | 'REMOVE_COLLATERAL';
px: string;
szi: string;
ntl: string;
collateralUsed: string;
builder: string;
fees: {
opening: string;
rollover: string;
liquidation: string;
builder: string;
priceImpact: string;
};
closedPnl: string;
hash: string;
time: number;
timestamp: number;
}>;