Class: AdCenterWrapper::PersonName
- Inherits:
-
Object
- Object
- AdCenterWrapper::PersonName
- Defined in:
- lib/adcenter_wrapper_entities.rb
Overview
https://adcenter.microsoft.com/api/customermanagement/EntitiesPersonName
firstName - SOAP::SOAPString
lastName - SOAP::SOAPString
middleInitial - SOAP::SOAPString
Instance Attribute Summary collapse
-
#firstName ⇒ Object
Returns the value of attribute firstName.
-
#lastName ⇒ Object
Returns the value of attribute lastName.
-
#middleInitial ⇒ Object
Returns the value of attribute middleInitial.
Instance Method Summary collapse
-
#initialize(firstName = nil, lastName = nil, middleInitial = nil) ⇒ PersonName
constructor
A new instance of PersonName.
Constructor Details
#initialize(firstName = nil, lastName = nil, middleInitial = nil) ⇒ PersonName
Returns a new instance of PersonName.
4323 4324 4325 4326 4327 |
# File 'lib/adcenter_wrapper_entities.rb', line 4323 def initialize(firstName = nil, lastName = nil, middleInitial = nil) @firstName = firstName @lastName = lastName @middleInitial = middleInitial end |
Instance Attribute Details
#firstName ⇒ Object
Returns the value of attribute firstName.
4319 4320 4321 |
# File 'lib/adcenter_wrapper_entities.rb', line 4319 def firstName @firstName end |
#lastName ⇒ Object
Returns the value of attribute lastName.
4320 4321 4322 |
# File 'lib/adcenter_wrapper_entities.rb', line 4320 def lastName @lastName end |
#middleInitial ⇒ Object
Returns the value of attribute middleInitial.
4321 4322 4323 |
# File 'lib/adcenter_wrapper_entities.rb', line 4321 def middleInitial @middleInitial end |