Module Values.ReadinessSource

Information indicating if the Calculated Attribute is ready for use by confirming all historical data has been processed and reflected.

Sourcetype nonrec t = {
  1. progressPercentage : PercentageInteger.t option;
    (*

    Approximately how far the Calculated Attribute creation is from completion.

    *)
  2. message : Text.t option;
    (*

    Any customer messaging.

    *)
}
Sourceval make : ?progressPercentage:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of PercentageInteger.t | `String of Text.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