Module Values.CreateSubscriberRequestSource

Request of CreateSubscriber

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

    The accountId that is associated with the budget that you want to create a subscriber for.

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

    The name of the budget that you want to subscribe to. Budget names must be unique within an account.

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

    The notification that you want to create a subscriber for.

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

    The subscriber that you want to associate with a budget notification.

    *)
}
Sourceval context_ : string
Sourceval make : accountId:AccountId.t -> budgetName:BudgetName.t -> notification:Notification.t -> subscriber: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