output.put("longitude", gp.getLongitude());
return output;
}
if(value instanceof ParseObject) {
ParseObject po = (ParseObject) value;
JSONObject output = new JSONObject();
output.put("__type", "Pointer");
output.put("className", po.getClassName());
output.put("objectId", po.getObjectId());
return output;
}
if(Parse.isValidType(value)) {
return value;