Module Values_1.PivotedLabelSource

Specifies a label value to be pivoted into a separate column, including the new column name and identifier.

Sourcetype nonrec t = {
  1. labelName : CellValue.t;
    (*

    The label value from the source data to be pivoted.

    *)
  2. newColumnName : Values_0.ColumnName.t;
    (*

    The name for the new column created from this pivoted label.

    *)
  3. newColumnId : Values_0.ColumnId.t;
    (*

    A unique identifier for the new column created from this pivoted label.

    *)
}
Sourceval context_ : string
Sourceval make : labelName:CellValue.t -> newColumnName:Values_0.ColumnName.t -> newColumnId:Values_0.ColumnId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CellValue.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