etebase_invitation_manager_fetch_user_profile method

Pointer<EtebaseUserProfile> etebase_invitation_manager_fetch_user_profile(
  1. Pointer<EtebaseCollectionInvitationManager> this_,
  2. Pointer<Char> username
)

Fetch and return a user's profile

@param this_ the object handle @param username the username of the user to fetch

Implementation

ffi.Pointer<EtebaseUserProfile> etebase_invitation_manager_fetch_user_profile(
  ffi.Pointer<EtebaseCollectionInvitationManager> this_,
  ffi.Pointer<ffi.Char> username,
) {
  return _etebase_invitation_manager_fetch_user_profile(
    this_,
    username,
  );
}