Module Values.BudgetActionToAddSource

The budget action to add.

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

    The type of budget action to add.

    *)
  2. thresholdPercentage : ThresholdPercentage.t;
    (*

    The percentage threshold for the budget action to add.

    *)
  3. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> type_:BudgetActionType.t -> thresholdPercentage:ThresholdPercentage.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of ThresholdPercentage.t | `String of Description.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