Module Values.UpdateNotificationRequestSource

Request of UpdateNotification

Sourcetype nonrec t = {
  1. accountId : AccountId.t;
    (*

    The accountId that is associated with the budget whose notification you want to update.

    *)
  2. budgetName : BudgetName.t;
    (*

    The name of the budget whose notification you want to update.

    *)
  3. oldNotification : Notification.t;
    (*

    The previous notification that is associated with a budget.

    *)
  4. newNotification : Notification.t;
    (*

    The updated notification to be associated with a budget.

    *)
}
Sourceval context_ : string
Sourceval make : accountId:AccountId.t -> budgetName:BudgetName.t -> oldNotification:Notification.t -> newNotification:Notification.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccountId.t | `Structure of (string * [> `Double of NotificationThreshold.t | `Enum of string ]) list ]) 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