Module: Official
- Included in:
- Person
- Defined in:
- lib/magister/types/person.rb
Overview
Module used in the #person class
Instance Method Summary collapse
-
#firstNames ⇒ String
The official first of the person.
-
#initials ⇒ String
The initials of the person.
-
#lastName ⇒ String
The official last name of the person.
-
#prepositions ⇒ String?
The official prepositions of the person.
Instance Method Details
#firstNames ⇒ String
The official first of the person
46 47 48 |
# File 'lib/magister/types/person.rb', line 46 def firstNames @officialFirstNames end |
#initials ⇒ String
The initials of the person
64 65 66 |
# File 'lib/magister/types/person.rb', line 64 def initials @initials end |
#lastName ⇒ String
The official last name of the person
58 59 60 |
# File 'lib/magister/types/person.rb', line 58 def lastName @officialLastName end |
#prepositions ⇒ String?
The official prepositions of the person
52 53 54 |
# File 'lib/magister/types/person.rb', line 52 def prepositions @officialPrepositions end |