Module Values.MixedMeasureMappingSource

MixedMeasureMappings are mappings that can be used to ingest data into a mixture of narrow and multi measures in the derived table.

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

    Refers to the value of measure_name in a result row. This field is required if MeasureNameColumn is provided.

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

    This field refers to the source column from which measure-value is to be read for result materialization.

    *)
  3. targetMeasureName : SchemaName.t option;
    (*

    Target measure name to be used. If not provided, the target measure name by default would be measure-name if provided, or sourceColumn otherwise.

    *)
  4. measureValueType : MeasureValueType.t;
    (*

    Type of the value that is to be read from sourceColumn. If the mapping is for MULTI, use MeasureValueType.MULTI.

    *)
  5. multiMeasureAttributeMappings : MultiMeasureAttributeMappingList.t option;
    (*

    Required when measureValueType is MULTI. Attribute mappings for MULTI value measures.

    *)
}
Sourceval context_ : string
Sourceval make : ?measureName:??? -> ?sourceColumn:??? -> ?targetMeasureName:??? -> ?multiMeasureAttributeMappings:??? -> measureValueType:MeasureValueType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of SchemaName.t ]) list ] list | `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