etebase_item_manager_fetch_updates method

Pointer<EtebaseItemListResponse> etebase_item_manager_fetch_updates(
  1. Pointer<EtebaseItemManager> this_,
  2. Pointer<Pointer<EtebaseItem>> items,
  3. int items_size,
  4. 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,
  );
}