(Object obj)
| 310 | // json / Json |
| 311 | // ------------------------------------------------- |
| 312 | public static String json(Object obj) { |
| 313 | // In C# there was a special case for ccxt.pro.IOrderBook; we don't have that type here. |
| 314 | // Keep the exception-shaping behavior from Json(). |
| 315 | return Json(obj); |
| 316 | } |
| 317 | |
| 318 | public static String Json(Object obj) { |
| 319 | if (obj == null) return null; |