etebase_invitation_manager_invite method
int
etebase_invitation_manager_invite(
- Pointer<
EtebaseCollectionInvitationManager> this_, - Pointer<
EtebaseCollection> collection, - Pointer<
Char> username, - Pointer<
Void> pubkey, - int pubkey_size,
- 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,
);
}