etebase_collection_set_meta_raw method
int
etebase_collection_set_meta_raw(
- Pointer<
EtebaseCollection> this_, - Pointer<
Void> meta, - int meta_size
Set metadata for the collection object from a byte array
@param this_ the object handle
@param meta the metadata for the collection. This needs to be a valid EtebaseItemMetadata
-like struct encoded using msgpack
.
@param meta_size the metadata size
Implementation
int etebase_collection_set_meta_raw(
ffi.Pointer<EtebaseCollection> this_,
ffi.Pointer<ffi.Void> meta,
int meta_size,
) {
return _etebase_collection_set_meta_raw(
this_,
meta,
meta_size,
);
}