target

abstract val target: Any?(source)

The receiver object on which the intercepted function is called, or null for top-level functions and functions called on companion objects.

Example: for fun UserService.getUser(id: String) called as userService.getUser("42"), target is the userService instance.