etebase_collection_manager_upload method

int etebase_collection_manager_upload(
  1. Pointer<EtebaseCollectionManager> this_,
  2. Pointer<EtebaseCollection> collection,
  3. Pointer<EtebaseFetchOptions> fetch_options
)

Upload a collection

@param this_ the object handle @param collection the collection object to be uploaded @param fetch_options the EtebaseFetchOptions to upload with

Implementation

int etebase_collection_manager_upload(
  ffi.Pointer<EtebaseCollectionManager> this_,
  ffi.Pointer<EtebaseCollection> collection,
  ffi.Pointer<EtebaseFetchOptions> fetch_options,
) {
  return _etebase_collection_manager_upload(
    this_,
    collection,
    fetch_options,
  );
}