Class: Schemas::Directory_types::NameType
- Inherits:
-
Object
- Object
- Schemas::Directory_types::NameType
- Defined in:
- lib/bluevia/schemas/directory_types.rb
Overview
/NameType
firstName - SOAP::SOAPString
lastName - SOAP::SOAPString
middleName - SOAP::SOAPString
Instance Attribute Summary collapse
-
#firstName ⇒ Object
Returns the value of attribute firstName.
-
#lastName ⇒ Object
Returns the value of attribute lastName.
-
#middleName ⇒ Object
Returns the value of attribute middleName.
Instance Method Summary collapse
-
#initialize(firstName = nil, lastName = nil, middleName = nil) ⇒ NameType
constructor
A new instance of NameType.
Constructor Details
#initialize(firstName = nil, lastName = nil, middleName = nil) ⇒ NameType
Returns a new instance of NameType.
283 284 285 286 287 |
# File 'lib/bluevia/schemas/directory_types.rb', line 283 def initialize(firstName = nil, lastName = nil, middleName = nil) @firstName = firstName @lastName = lastName @middleName = middleName end |
Instance Attribute Details
#firstName ⇒ Object
Returns the value of attribute firstName.
279 280 281 |
# File 'lib/bluevia/schemas/directory_types.rb', line 279 def firstName @firstName end |
#lastName ⇒ Object
Returns the value of attribute lastName.
280 281 282 |
# File 'lib/bluevia/schemas/directory_types.rb', line 280 def lastName @lastName end |
#middleName ⇒ Object
Returns the value of attribute middleName.
281 282 283 |
# File 'lib/bluevia/schemas/directory_types.rb', line 281 def middleName @middleName end |