(timeInForce: Str)
| 1420 | } |
| 1421 | |
| 1422 | parseTimeInForce (timeInForce: Str) { |
| 1423 | const timeInForces: Dict = { |
| 1424 | 'ioc': 'IOC', |
| 1425 | 'fok': 'FOK', |
| 1426 | 'post_only': 'PO', |
| 1427 | }; |
| 1428 | return this.safeString (timeInForces, timeInForce); |
| 1429 | } |
| 1430 | |
| 1431 | parseOrderStatus (status: Str) { |
| 1432 | if (status !== undefined) { |