(timeInForce: Str)
| 2383 | } |
| 2384 | |
| 2385 | parseTimeInForce (timeInForce: Str) { |
| 2386 | const timeInForces: Dict = { |
| 2387 | 'GOOD_TILL_CANCEL': 'GTC', |
| 2388 | 'IMMEDIATE_OR_CANCEL': 'IOC', |
| 2389 | 'FILL_OR_KILL': 'FOK', |
| 2390 | }; |
| 2391 | return this.safeString (timeInForces, (timeInForce as string), timeInForce); |
| 2392 | } |
| 2393 | |
| 2394 | parseOrder (order: Dict, market: Market = undefined): Order { |
| 2395 | // |