Level 73
Not really directly, but you can work around that.
Here are all the properties available on the payment intent: https://stripe.com/docs/api/payment_intents/object
So in order to get the last4 you will have to fetch all the payment methods for the customer, and then from the payment intent check which payment_method_types are used for the payment, if card is in it, then from the payment methods you will have the card object, and get the last4 from there.