I'm successfully able to loop through order items and get the Name and Code;
int lineItemSize = order.getLineItems().size();
for (int i = 0; i < lineItemSize; i++) {
Log.d("Price Type: ", order.getLineItems().get(i).getName());
Log.d("Section: ", order.getLineItems().get(i).getItemCode());
}
But would like to pull additional info like the SKU, modifiers, categories, labels etc. How can I do this? (and also where should I be looking for the documentation on how to do this? What methods/properties are exposed by order/getLineItems() etc?)
Thanks!