Interface: WaitForODataLoadOptions
Defined in: src/modules/odata.ts:53
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:55
Binding path to check for loaded data (must start with /).
modelName?​
readonlyoptionalmodelName:string
Defined in: src/modules/odata.ts:38
Named OData model. Omit or pass undefined for the default (unnamed) model.
Inherited from​
polling?​
readonlyoptionalpolling:number
Defined in: src/modules/odata.ts:57
Polling interval in ms. Defaults to DEFAULT_TIMEOUTS.POLLING_INTERVAL.
timeout?​
readonlyoptionaltimeout:number
Defined in: src/modules/odata.ts:36
Timeout in ms for the operation. Defaults to DEFAULT_TIMEOUTS.UI5_WAIT.