Module Values.DistributionBundleSource

Describes the specifications of a distribution bundle.

Sourcetype nonrec t = {
  1. bundleId : String_.t option;
    (*

    The ID of the bundle.

    *)
  2. name : String_.t option;
    (*

    The name of the distribution bundle.

    *)
  3. price : Float_.t option;
    (*

    The monthly price, in US dollars, of the bundle.

    *)
  4. transferPerMonthInGb : Integer.t option;
    (*

    The monthly network transfer quota of the bundle.

    *)
  5. isActive : Boolean.t option;
    (*

    Indicates whether the bundle is active, and can be specified for a new or existing distribution.

    *)
}
Sourceval make : ?bundleId:??? -> ?name:??? -> ?price:??? -> ?transferPerMonthInGb:??? -> ?isActive:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Float of Float_.t | `Integer of Integer.t | `String of String_.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