etebase_item_manager_fetch_multi method

Pointer<EtebaseItemListResponse> etebase_item_manager_fetch_multi(
  1. Pointer<EtebaseItemManager> this_,
  2. Pointer<Pointer<Char>> items,
  3. int items_size,
  4. Pointer<EtebaseFetchOptions> fetch_options,
)

Fetch multiple Items using their UID

See etebase_item_manager_fetch for fetching a single item

@param this_ the object handle @param items the list of item uids 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_multi(
  ffi.Pointer<EtebaseItemManager> this_,
  ffi.Pointer<ffi.Pointer<ffi.Char>> items,
  int items_size,
  ffi.Pointer<EtebaseFetchOptions> fetch_options,
) {
  return _etebase_item_manager_fetch_multi(
    this_,
    items,
    items_size,
    fetch_options,
  );
}