etebase_item_manager_fetch method

Pointer<EtebaseItem> etebase_item_manager_fetch(
  1. Pointer<EtebaseItemManager> this_,
  2. Pointer<Char> item_uid,
  3. Pointer<EtebaseFetchOptions> fetch_options
)

Fetch a single item from the server using its UID

@param this_ the object handle @param item_uid the UID of the item to be fetched @param fetch_options the EtebaseFetchOptions to fetch with

Implementation

ffi.Pointer<EtebaseItem> etebase_item_manager_fetch(
  ffi.Pointer<EtebaseItemManager> this_,
  ffi.Pointer<ffi.Char> item_uid,
  ffi.Pointer<EtebaseFetchOptions> fetch_options,
) {
  return _etebase_item_manager_fetch(
    this_,
    item_uid,
    fetch_options,
  );
}