Interface: WaitForODataLoadOptions
Defined in: src/modules/odata.ts:62
Options for waiting on OData data load completion.
Example
const opts: WaitForODataLoadOptions = {
timeout: 15_000,
bindingPath: '/Products',
polling: 200,
};
Extends
Properties
bindingPath?
readonlyoptionalbindingPath:`/${string}`
Defined in: src/modules/odata.ts:64
Binding path to check for loaded data (must start with /).
modelName?
readonlyoptionalmodelName:string
Defined in: src/modules/odata.ts:47
Named OData model. Omit or pass undefined for the default (unnamed) model.
Inherited from
polling?
readonlyoptionalpolling:number
Defined in: src/modules/odata.ts:66
Polling interval in ms. Defaults to DEFAULT_TIMEOUTS.POLLING_INTERVAL.
timeout?
readonlyoptionaltimeout:number
Defined in: src/modules/odata.ts:45
Timeout in ms for the operation. Defaults to DEFAULT_TIMEOUTS.UI5_WAIT.