Module Values.UpdateSubscriberRequestSource

Request of UpdateSubscriber

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

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

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

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

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

    The notification whose subscriber you want to update.

    *)
  4. oldSubscriber : Subscriber.t;
    (*

    The previous subscriber that is associated with a budget notification.

    *)
  5. newSubscriber : Subscriber.t;
    (*

    The updated subscriber that is associated with a budget notification.

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