trade-backend/src/interfaces/responses/orders/ApplyTip.ts
AzizbekFayziyev e62342e016 finish
2025-07-01 21:07:46 +05:00

17 lines
311 B
TypeScript

import UserData from '../../common/UserData';
interface ApplyTip {
id: number;
left: string;
price: string;
user: UserData;
timestamp?: number;
type: string;
total: string;
connected_order_id: number;
transaction: boolean;
hex_raw_proposal?: string;
isInstant?: boolean;
}
export default ApplyTip;