(timeInForce: Str)
| 1838 | } |
| 1839 | |
| 1840 | parseTimeInForce (timeInForce: Str) { |
| 1841 | const timeInForces: Dict = { |
| 1842 | 'ioc': 'IOC', |
| 1843 | 'fok': 'FOK', |
| 1844 | 'gtc': 'GTC', |
| 1845 | 'post_only': 'PO', |
| 1846 | }; |
| 1847 | return this.safeString (timeInForces, (timeInForce as string)); |
| 1848 | } |
| 1849 | |
| 1850 | parseOrderStatus (status: Str) { |
| 1851 | if (status !== undefined) { |