etebase_fs_cache_collection_save_stoken method

int etebase_fs_cache_collection_save_stoken(
  1. Pointer<EtebaseFileSystemCache> this_,
  2. Pointer<Char> col_uid,
  3. Pointer<Char> stoken
)

Save a collection's sync token

@param this_ the object handle @param col_uid the UID of the collection @param stoken the sync token to be saved

Implementation

int etebase_fs_cache_collection_save_stoken(
  ffi.Pointer<EtebaseFileSystemCache> this_,
  ffi.Pointer<ffi.Char> col_uid,
  ffi.Pointer<ffi.Char> stoken,
) {
  return _etebase_fs_cache_collection_save_stoken(
    this_,
    col_uid,
    stoken,
  );
}