Values.WorkflowExecutionOpenCountsSourceContains the counts of open tasks, child workflow executions and timers for a workflow execution.
type nonrec t = {openActivityTasks : Count.t option;The count of activity tasks whose status is OPEN.
*)openDecisionTasks : OpenDecisionTasksCount.t option;The count of decision tasks whose status is OPEN. A workflow execution can have at most one open decision task.
*)openTimers : Count.t option;The count of timers started by this workflow execution that have not fired yet.
*)openChildWorkflowExecutions : Count.t option;The count of child workflow executions whose status is OPEN.
*)openLambdaFunctions : Count.t option;The count of Lambda tasks whose status is OPEN.
*)}