Is it possible to get the subscription information of the next renewal

I am implementing auto-renewing subscriptions using Unity IAP.

Is there a way to know the information of the next subscription when I purchase another subscription after purchasing one subscription?

For example, suppose there are auto-renewing subscriptions with a 1-month plan and a 6-month plan. I purchase the 1-month plan and then the 6-month plan. In the App Store, the 1-month plan will automatically switch to the 6-month plan after the renewal date. If I get the current subscription information before the expiration date of the 1-month plan, I can get the information of the 1-month plan, but I would also like to know that it will switch to the 6-month plan on the next renewal date.

The SubscriptionInfo class has methods such as isAutoRenewing() and isCancelled(), which can be used to find out whether the subscription will be automatically renewed or canceled on the next renewal date.

Similarly, I would like to know how to get information about subscriptions that are scheduled to switch on the next renewal date.