etebase_collection_manager_fetch method

Pointer<EtebaseCollection> etebase_collection_manager_fetch(
  1. Pointer<EtebaseCollectionManager> this_,
  2. Pointer<Char> col_uid,
  3. Pointer<EtebaseFetchOptions> fetch_options
)

Fetch a single collection from the server using its UID

@param this_ the object handle @param col_uid the UID of the collection to be fetched @param fetch_options the EtebaseFetchOptions to fetch with

Implementation

ffi.Pointer<EtebaseCollection> etebase_collection_manager_fetch(
  ffi.Pointer<EtebaseCollectionManager> this_,
  ffi.Pointer<ffi.Char> col_uid,
  ffi.Pointer<EtebaseFetchOptions> fetch_options,
) {
  return _etebase_collection_manager_fetch(
    this_,
    col_uid,
    fetch_options,
  );
}