Fill in the blank space using mapper to convert the Post class instance into a JSON string. Enter the code that is missing.
ObjectMapper mapper = new ObjectMapper();
Post post = new Post();
String postAsString = _________________; // Fill in this blankDo not include a ;.