etebase_item_manager_list method

Pointer<EtebaseItemListResponse> etebase_item_manager_list(
  1. Pointer<EtebaseItemManager> this_,
  2. Pointer<EtebaseFetchOptions> fetch_options
)

Fetch all items of a collection and return a list response

@param this_ the object handle @param fetch_options the EtebaseFetchOptions to fetch with

Implementation

ffi.Pointer<EtebaseItemListResponse> etebase_item_manager_list(
  ffi.Pointer<EtebaseItemManager> this_,
  ffi.Pointer<EtebaseFetchOptions> fetch_options,
) {
  return _etebase_item_manager_list(
    this_,
    fetch_options,
  );
}