Module Values.BudgetParameterSource

Individual budget parameter configuration that defines specific budget allocation settings for access budgets.

Sourcetype nonrec t = {
  1. type_ : AccessBudgetType.t;
    (*

    The type of budget parameter being configured.

    *)
  2. budget : Budget.t;
    (*

    The budget allocation amount for this specific parameter.

    *)
  3. autoRefresh : AutoRefreshMode.t option;
    (*

    Whether this individual budget parameter automatically refreshes when the budget period resets.

    *)
}
Sourceval context_ : string
Sourceval make : ?autoRefresh:??? -> type_:AccessBudgetType.t -> budget:Budget.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Budget.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t