Module Values.CalculatedAttributeValueSource

The object containing the values of a single calculated attribute value.

Sourcetype nonrec t = {
  1. calculatedAttributeName : TypeName.t option;
    (*

    The unique name of the calculated attribute.

    *)
  2. displayName : DisplayName.t option;
    (*

    The display name of the calculated attribute.

    *)
  3. isDataPartial : String1To255.t option;
    (*

    Indicates whether the calculated attribute's value is based on partial data. If the data is partial, it is set to true.

    *)
  4. profileId : Uuid.t option;
    (*

    The profile id belonging to this calculated attribute value.

    *)
  5. value : String1To255.t option;
    (*

    The value of the calculated attribute.

    *)
  6. lastObjectTimestamp : Timestamp.t option;
    (*

    The timestamp of the newest object included in the calculated attribute calculation.

    *)
}
Sourceval make : ?calculatedAttributeName:??? -> ?displayName:??? -> ?isDataPartial:??? -> ?profileId:??? -> ?value:??? -> ?lastObjectTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TypeName.t | `Timestamp of Timestamp.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