Module Values.BillingDetailsSource

An object that describes workflow billing details.

Sourcetype nonrec t = {
  1. billedMemoryUsedInMB : BilledMemoryUsed.t option;
    (*

    Billed memory consumption of your workflow, in MB.

    *)
  2. billedDurationInMilliseconds : BilledDuration.t option;
    (*

    Billed duration of your workflow, in milliseconds.

    *)
}
Sourceval make : ?billedMemoryUsedInMB:??? -> ?billedDurationInMilliseconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of BilledMemoryUsed.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