Type Alias RequestPostPayloadV2

Payload to send when creating an ODAG request. selectionApp is the ID of the selection Analytics Application from which the request is made. bindSelectionState is the selection state in the selection Analytics Application at the time the request is submitted (you can limit the fields to those used by the link's bindings to reduce payload size).

type RequestPostPayloadV2 = {
    actualRowEst?: number;
    bindSelectionState: odagLinks.SelectionStateV2;
    clientContextHandle?: string;
    selectionApp: odagLinks.AppIdV2;
    selectionState?: odagLinks.SelectionStateV2;
    sheetname?: string;
}
Index

Properties

actualRowEst?: number

The current row estimate value calculated by the link's rowEstExpr property in the context of the selection Analytics Application.

bindSelectionState: odagLinks.SelectionStateV2
clientContextHandle?: string
selectionApp: odagLinks.AppIdV2
selectionState?: odagLinks.SelectionStateV2
sheetname?: string