Module Values.UpdateCalculatedAttributeDefinitionRequestSource

Updates an existing calculated attribute definition. When updating the Conditions, note that increasing the date range of a calculated attribute will not trigger inclusion of historical data greater than the current date range.

Sourcetype nonrec t = {
  1. domainName : Name.t;
    (*

    The unique name of the domain.

    *)
  2. calculatedAttributeName : TypeName.t;
    (*

    The unique name of the calculated attribute.

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

    The display name of the calculated attribute.

    *)
  4. description : SensitiveText.t option;
    (*

    The description of the calculated attribute.

    *)
  5. conditions : Conditions.t option;
    (*

    The conditions including range, object count, and threshold for the calculated attribute.

    *)
}
Sourceval context_ : string
Sourceval make : ?displayName:??? -> ?description:??? -> ?conditions:??? -> domainName:Name.t -> calculatedAttributeName:TypeName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Name.t | `Structure of (string * [> `Integer of ObjectCount.t | `Structure of (string * [> `Enum of string | `Integer of Value.t | `String of String1To255.t | `Structure of (string * [> `Integer of ValueRangeStart.t ]) list ]) list ]) list ]) 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