Hi Mosh -
Thanks for this great course series. I absolute like your style - for me it’s the best way to learn things I did not know until now.
BTW:
In “Spring Boot: Mastering REST API Development”, “Payment Processing”, Chapter 9, ~at minute 3:
You made a switch-case block to check the eventType before casting the stripeObject. Is a modern instanceOf better?
if (stripeObject instanceof PaymentIntent paymentIntent) {...
After this line you’ll get a paymentIntent correctly casted and null checked. Will this work?