Module Values_0.CalculatedFieldSource

The calculated field of an analysis.

Sourcetype nonrec t = {
  1. dataSetIdentifier : DataSetIdentifier.t;
    (*

    The data set that is used in this calculated field.

    *)
  2. name : ColumnName.t;
    (*

    The name of the calculated field.

    *)
  3. expression : CalculatedFieldExpression.t;
    (*

    The expression of the calculated field.

    *)
}
Sourceval context_ : string
Sourceval make : dataSetIdentifier:DataSetIdentifier.t -> name:ColumnName.t -> expression:CalculatedFieldExpression.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DataSetIdentifier.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