etebase_collection_set_meta method

int etebase_collection_set_meta(
  1. Pointer<EtebaseCollection> this_,
  2. Pointer<EtebaseItemMetadata> meta
)

Set metadata for the collection object

@param this_ the object handle @param meta the metadata object to be set for the collection

Implementation

int etebase_collection_set_meta(
  ffi.Pointer<EtebaseCollection> this_,
  ffi.Pointer<EtebaseItemMetadata> meta,
) {
  return _etebase_collection_set_meta(
    this_,
    meta,
  );
}