Module Values.MultiMeasureAttributeMappingSource

Attribute mapping for MULTI value measures.

Sourcetype nonrec t = {
  1. sourceColumn : SchemaName.t;
    (*

    Source column from where the attribute value is to be read.

    *)
  2. targetMultiMeasureAttributeName : SchemaName.t option;
    (*

    Custom name to be used for attribute name in derived table. If not provided, source column name would be used.

    *)
  3. measureValueType : ScalarMeasureValueType.t;
    (*

    Type of the attribute to be read from the source column.

    *)
}
Sourceval context_ : string
Sourceval make : ?targetMultiMeasureAttributeName:??? -> sourceColumn:SchemaName.t -> measureValueType:ScalarMeasureValueType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SchemaName.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