1# basic_json::json_serializer 2 3```cpp 4template<typename T, typename SFINAE> 5using json_serializer = JSONSerializer<T, SFINAE>; 6``` 7 8## Template parameters 9 10`T` 11: type to convert; will be used in the `to_json`/`from_json` functions 12 13`SFINAE` 14: type to add compile type checks via SFINAE; usually `#!cpp void` 15 16## Notes 17 18#### Default type 19 20The default values for `json_serializer` is [`adl_serializer`](../adl_serializer.md). 21 22## Version history 23 24- Since version 2.0.0. 25