Module: Official

Included in:
Person
Defined in:
lib/magister/types/person.rb

Overview

Module used in the #person class

Since:

  • 1.2.0

Instance Method Summary collapse

Instance Method Details

#firstNamesString

The official first of the person

Returns:

  • (String)

    name

Since:

  • 1.2.0



46
47
48
# File 'lib/magister/types/person.rb', line 46

def firstNames
    @officialFirstNames
end

#initialsString

The initials of the person

Returns:

  • (String)

    initials

Since:

  • 1.2.0



64
65
66
# File 'lib/magister/types/person.rb', line 64

def initials
    @initials
end

#lastNameString

The official last name of the person

Returns:

  • (String)

    name

Since:

  • 1.2.0



58
59
60
# File 'lib/magister/types/person.rb', line 58

def lastName
    @officialLastName
end

#prepositionsString?

The official prepositions of the person

Returns:

  • (String, nil)

    prepositions

Since:

  • 1.2.0



52
53
54
# File 'lib/magister/types/person.rb', line 52

def prepositions
    @officialPrepositions
end