Hi team,
I am using ACTION_LINE_ITEM_ADDED intent to for item added to register application.
and by using the below method I am able to get ordered, lineItemId and ItemId
orderId = intent.getStringExtra("com.clover.intent.extra.ORDER_ID") lineItemId = intent.getStringExtra("com.clover.intent.extra.LINE_ITEM_ID") val itemId: String? = intent.getStringExtra("com.clover.intent.extra.ITEM_ID")
I need a Product code but am unable to find the intent for it.
thank you,