etebase_item_manager_fetch_updates method
Pointer<EtebaseItemListResponse>
etebase_item_manager_fetch_updates(
- Pointer<
EtebaseItemManager> this_, - Pointer<
Pointer< items,EtebaseItem> > - int items_size,
- Pointer<
EtebaseFetchOptions> fetch_options,
Fetch the latest revision of the supplied items from the server and return a list response
@param this_ the object handle
@param items the list of items to be fetched
@param items_size the number of items
@param fetch_options the EtebaseFetchOptions
to fetch with
Implementation
ffi.Pointer<EtebaseItemListResponse> etebase_item_manager_fetch_updates(
ffi.Pointer<EtebaseItemManager> this_,
ffi.Pointer<ffi.Pointer<EtebaseItem>> items,
int items_size,
ffi.Pointer<EtebaseFetchOptions> fetch_options,
) {
return _etebase_item_manager_fetch_updates(
this_,
items,
items_size,
fetch_options,
);
}