update /api/orders/create response
This commit is contained in:
parent
c3e41526c8
commit
ea92d289a7
1 changed files with 17 additions and 1 deletions
|
|
@ -21,6 +21,22 @@
|
|||
```typescript
|
||||
{
|
||||
success: boolean;
|
||||
data?: string // error message
|
||||
data?: string |
|
||||
{
|
||||
hasNotification: boolean;
|
||||
id: number;
|
||||
type: string;
|
||||
timestamp: string;
|
||||
side: string;
|
||||
price: string;
|
||||
amount: string;
|
||||
total: string;
|
||||
pair_id: number;
|
||||
user_id: number;
|
||||
status: string;
|
||||
left: string;
|
||||
updatedAt: string;
|
||||
createdAt: string;
|
||||
}
|
||||
}
|
||||
```
|
||||
Loading…
Add table
Reference in a new issue