Values.BudgetActionToAddSourceThe budget action to add.
type nonrec t = {type_ : BudgetActionType.t;The type of budget action to add.
*)thresholdPercentage : ThresholdPercentage.t;The percentage threshold for the budget action to add.
*)description : Description.t option;A description for the budget action to add. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
*)}val make :
?description:??? ->
type_:BudgetActionType.t ->
thresholdPercentage:ThresholdPercentage.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Float of ThresholdPercentage.t
| `String of Description.t ])
list ]