We are trying to integrate the adding the Custom item into our application. Is there any intent available? Or else if any one guide us for implementation. It is very helpful for us.
Please describe in more detail what your motivation is and what you are try to achieve. (See item #4 of https://community.clover.com/questions/35/how-do-i-ask-a-good-question.html)
Your question is still not clear to me at all. Please describe in precise detail how the end user will experience the feature you would like to implement.
Order order = new Order(); order = mOrderConnector.createOrder(order); LineItem customItem = new LineItem();<br>customItem.setName("Avocado");<br>customItem.setPrice((long)100);<br><br>mOrderConnector.addCustomLineItem(order.getId(), customItem, false);
2 People are following this question.