Module Values.ResponseBudgetActionSource

The details of a budget action.

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

    The action taken on the budget once scheduling stops.

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

    The percentage threshold for the budget.

    *)
  3. description : Description.t option;
    (*

    The budget action description. 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 make : ?type_:??? -> ?thresholdPercentage:??? -> ?description:??? -> 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