Module Values.ViewFrameSource

Represents the data being transformed during an action.

Sourcetype nonrec t = {
  1. startColumnIndex : StartColumnIndex.t;
    (*

    The starting index for the range of columns to return in the view frame.

    *)
  2. columnRange : ColumnRange.t option;
    (*

    The number of columns to include in the view frame, beginning with the StartColumnIndex value and ignoring any columns in the HiddenColumns list.

    *)
  3. hiddenColumns : HiddenColumnList.t option;
    (*

    A list of columns to hide in the view frame.

    *)
  4. startRowIndex : StartRowIndex.t option;
    (*

    The starting index for the range of rows to return in the view frame.

    *)
  5. rowRange : RowRange.t option;
    (*

    The number of rows to include in the view frame, beginning with the StartRowIndex value.

    *)
  6. analytics : AnalyticsMode.t option;
    (*

    Controls if analytics computation is enabled or disabled. Enabled by default.

    *)
}
Sourceval context_ : string
Sourceval make : ?columnRange:??? -> ?hiddenColumns:??? -> ?startRowIndex:??? -> ?rowRange:??? -> ?analytics:??? -> startColumnIndex:StartColumnIndex.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of StartColumnIndex.t | `List of [> `String of ColumnName.t ] list ]) 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