Adding Retry count to MonitoringAPI

We writing an app to schedule email sends from other web apps, and have an API that can return a list of scheduled jobs. We can also get failed jobs from the IMonitoringApi, however this doesn’t have any way to list if the jobs have been scheduled, failed but will retry - we’d like to be able to say “job will be retried at time X”

I’m not sure if this could go on the ScheduledJobDto or someother class - or be a separate call to list retries on the IMonitoringApi?

For now we may write something that reaches in and gets the storageconnection and uses that, but it feels a little like grubbing in the internals.