bod
12/20/2019, 2:36 PM(Result<Page<Transaction>>) -> Unit
and in Swift I get Result<Page>
(I lost the second type). So because of this in Swift when I do page.items
instead of an array of Transaction
I get an array of Any?
- annoying. I suspect this may be because of the fact that Page
is an interface, could this be the problem?