etebase_collection_manager_list method

Pointer<EtebaseCollectionListResponse> etebase_collection_manager_list(
  1. Pointer<EtebaseCollectionManager> this_,
  2. Pointer<Char> collection_type,
  3. Pointer<EtebaseFetchOptions> fetch_options
)

Fetch all collections of a specific type from the server and return a list response

@param this_ the object handle @param collection_type the type of items stored in the collection @param fetch_options the EtebaseFetchOptions to fetch with

Implementation

ffi.Pointer<EtebaseCollectionListResponse> etebase_collection_manager_list(
  ffi.Pointer<EtebaseCollectionManager> this_,
  ffi.Pointer<ffi.Char> collection_type,
  ffi.Pointer<EtebaseFetchOptions> fetch_options,
) {
  return _etebase_collection_manager_list(
    this_,
    collection_type,
    fetch_options,
  );
}