Paged is the actual data structure that facebook returns, with data,
paging/next, paging/previous.
PagedLater is a wrapper around this raw structure that provides a more
convenient interface, making it easier to page forward and backward.
Jeff
There currently isn't a way to directly map a structure that
*contains* a PagedLater. In order to make PagedLater work, the
adapter needs a reference back to the batcher so that it can enqueue
the next/previous requests. Right now there's no obvious mechanism
for passing this info into the jackson-created classes.
What I would do if I were you is create a utility method somewhere
that takes the Paged comment structure and a batcher and returns the
next or previous stretch as a PagedLater, which you can then page as
normal. Not quite as pretty as having a PagedLater embedded in the
Photo structure, but it will work without digging deep into the
jackson binding mechanisms.
Jeff