Values.AccessBudgetDetailsSourceThe detailed information for a specific budget period, including time boundaries and budget amounts.
type nonrec t = {startTime : SyntheticTimestamp_date_time.t option;The start time of this budget period.
*)endTime : SyntheticTimestamp_date_time.t option;The end time of this budget period. If not specified, the budget period continues indefinitely.
*)remainingBudget : Budget.t option;The amount of budget remaining in this period.
*)budget : Budget.t option;The total budget amount allocated for this period.
*)budgetType : AccessBudgetType.t option;The type of budget period. Calendar-based types reset automatically at regular intervals, while LIFETIME budgets never reset.
*)autoRefresh : AutoRefreshMode.t option;Specifies whether this budget automatically refreshes when the current period ends.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of Budget.t
| `Timestamp of SyntheticTimestamp_date_time.t ])
list ]