Module Values.FleetAmountCapabilitySource

The fleet amount and attribute capabilities.

Sourcetype nonrec t = {
  1. name : AmountCapabilityName.t;
    (*

    The name of the fleet capability.

    *)
  2. min : Float_.t;
    (*

    The minimum amount of fleet worker capability.

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

    The maximum amount of the fleet worker capability.

    *)
}
Sourceval context_ : string
Sourceval make : ?max:??? -> name:AmountCapabilityName.t -> min:Float_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Float_.t | `String of AmountCapabilityName.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