etebase_collection_manager_list_multi method
Pointer<EtebaseCollectionListResponse>
etebase_collection_manager_list_multi(
- Pointer<
EtebaseCollectionManager> this_, - Pointer<
Pointer< collection_types,Char> > - int collection_types_size,
- 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,
);
}