Skip to main content
Version: 1.x

Interface: WaitForODataLoadOptions

Options for waiting on OData data load completion.

Example

const opts: WaitForODataLoadOptions = {
timeout: 15_000,
bindingPath: '/Products',
polling: 200,
};

Extends

Properties

bindingPath?

readonly optional bindingPath?: `/${string}`

Binding path to check for loaded data (must start with /).


modelName?

readonly optional modelName?: string

Named OData model. Omit or pass undefined for the default (unnamed) model.

Inherited from

ODataOptions.modelName


polling?

readonly optional polling?: number

Polling interval in ms. Defaults to DEFAULT_TIMEOUTS.POLLING_INTERVAL.


timeout?

readonly optional timeout?: number

Timeout in ms for the operation. Defaults to DEFAULT_TIMEOUTS.UI5_WAIT.

Inherited from

ODataOptions.timeout