etebase_collection_manager_list_multi method

Pointer<EtebaseCollectionListResponse> etebase_collection_manager_list_multi(
  1. Pointer<EtebaseCollectionManager> this_,
  2. Pointer<Pointer<Char>> collection_types,
  3. int collection_types_size,
  4. Pointer<EtebaseFetchOptions> fetch_options,
)

Fetch all collections of the supplied types from the server and return a list response

@param this_ the object handle @param collection_types array of strings denoting the collection types @param collection_types_size size of the collection_types array @param fetch_options the EtebaseFetchOptions to fetch with

Implementation

ffi.Pointer<EtebaseCollectionListResponse>
    etebase_collection_manager_list_multi(
  ffi.Pointer<EtebaseCollectionManager> this_,
  ffi.Pointer<ffi.Pointer<ffi.Char>> collection_types,
  int collection_types_size,
  ffi.Pointer<EtebaseFetchOptions> fetch_options,
) {
  return _etebase_collection_manager_list_multi(
    this_,
    collection_types,
    collection_types_size,
    fetch_options,
  );
}