DataFeedRollupSettings type

Specifies the rollup settings for a data feed.

type DataFeedRollupSettings =
  | { rollupType: "NoRollup" }
  | { rollupIdentificationValue?: string; rollupType: "AlreadyRollup" }
  | {
      autoRollupGroupByColumnNames?: string[]
      rollupIdentificationValue?: string
      rollupMethod?: DataFeedAutoRollupMethod
      rollupType: "AutoRollup"
    }