etebase_invitation_manager_invite method

int etebase_invitation_manager_invite(
  1. Pointer<EtebaseCollectionInvitationManager> this_,
  2. Pointer<EtebaseCollection> collection,
  3. Pointer<Char> username,
  4. Pointer<Void> pubkey,
  5. int pubkey_size,
  6. int access_level,
)

Invite a user to a collection

@param this_ the object handle @param collection the collection to invite to @param username the username of the user to invite @param pubkey the public key of the user to invite @param pubkey_size the size of the public key @param access_level the level of access to give to user

Implementation

int etebase_invitation_manager_invite(
  ffi.Pointer<EtebaseCollectionInvitationManager> this_,
  ffi.Pointer<EtebaseCollection> collection,
  ffi.Pointer<ffi.Char> username,
  ffi.Pointer<ffi.Void> pubkey,
  int pubkey_size,
  int access_level,
) {
  return _etebase_invitation_manager_invite(
    this_,
    collection,
    username,
    pubkey,
    pubkey_size,
    access_level,
  );
}