etebase_item_manager_fetch method
Pointer<EtebaseItem>
etebase_item_manager_fetch(
- Pointer<
EtebaseItemManager> this_, - Pointer<
Char> item_uid, - 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,
);
}