Module Values_0.TransposedTableOptionSource

The column option of the transposed table.

Sourcetype nonrec t = {
  1. columnIndex : TransposedColumnIndex.t option;
    (*

    The index of a columns in a transposed table. The index range is 0-9999.

    *)
  2. columnWidth : PixelLength.t option;
    (*

    The width of a column in a transposed table.

    *)
  3. columnType : TransposedColumnType.t;
    (*

    The column type of the column in a transposed table. Choose one of the following options: ROW_HEADER_COLUMN: Refers to the leftmost column of the row header in the transposed table. VALUE_COLUMN: Refers to all value columns in the transposed table.

    *)
}
Sourceval context_ : string
Sourceval make : ?columnIndex:??? -> ?columnWidth:??? -> columnType:TransposedColumnType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of TransposedColumnIndex.t | `String of PixelLength.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