Hi everyone.
in the “SDK for Android Documentation” at “Search with the Where clause”
I use the part whith custom class
Backendless.Persistence.of( Invoices.class ).find( dataQuery, new AsyncCallback<BackendlessCollection<Invoices>>(){
@Override
public void handleResponse(BackendlessCollection<Invoices> invoicesCollection) {
???what the code I need to get the objects??? (name, codeName, amount) }
@Override
public void handleFault(BackendlessFault backendlessFault) {
}
});Thanks