The key is to convert the property name to the method name. In general, the name of the recipient is obtained by taking the property name, upper case of the first character and adding "get".
So, if you want to call the getName method, this is a "name" property with lowercase n, and not uppercase N.
There are also many special cases for properties that actually start with uppercase letters, etc., but life is much easier if you set it up so that property names always start with lowercase letters.
source share