Module Values_1.SnapshotFileSheetSelectionSource

A structure that contains information that identifies the snapshot that needs to be generated.

Sourcetype nonrec t = {
  1. sheetId : Values_0.ShortRestrictiveResourceId.t;
    (*

    The sheet ID of the dashboard to generate the snapshot artifact from. This value is required for CSV, Excel, and PDF format types.

    *)
  2. selectionScope : Values_0.SnapshotFileSheetSelectionScope.t;
    (*

    The selection scope of the visuals on a sheet of a dashboard that you are generating a snapthot of. You can choose one of the following options. ALL_VISUALS - Selects all visuals that are on the sheet. This value is required if the snapshot is a PDF. SELECTED_VISUALS - Select the visual that you want to add to the snapshot. This value is required if the snapshot is a CSV or Excel workbook.

    *)
  3. visualIds : Values_0.SnapshotFileSheetSelectionVisualIdList.t option;
    (*

    A structure that lists the IDs of the visuals in the selected sheet. Supported visual types are table, pivot table visuals. This value is required if you are generating a CSV or Excel workbook. This value supports a maximum of 1 visual ID for CSV and 5 visual IDs across up to 5 sheet selections for Excel. If you are generating an Excel workbook, the order of the visual IDs provided in this structure determines the order of the worksheets in the Excel file.

    *)
}
Sourceval context_ : string
Sourceval make : ?visualIds:??? -> sheetId:Values_0.ShortRestrictiveResourceId.t -> selectionScope:Values_0.SnapshotFileSheetSelectionScope.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list | `String of Values_0.ShortRestrictiveResourceId.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