Hey, in our app we show post-purchase flow when a user purchases a subscription and its appearance should depend on the type of purchase: upgrade, downgrade or crossgrade.
I found a way how to get this type on the backend side but can not figure out how to get this within the app. I see that Transaction
has isUpgraded
property but it is always false
even if I move from a lower service plan to a higher one.
So, I have two questions:
- Is this actually possible to know on the client when the user upgrades, downgrades or crossgrades?
- If yes, then how?
Thanks