Class: AdCenterWrapper::PersonName

Inherits:
Object
  • Object
show all
Defined in:
lib/CustomerManagementService.rb

Overview

https://adcenter.microsoft.com/api/customermanagement/EntitiesPersonName

firstName - SOAP::SOAPString
lastName - SOAP::SOAPString
middleInitial - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(firstName = nil, lastName = nil, middleInitial = nil) ⇒ PersonName

Returns a new instance of PersonName.

[View source]

417
418
419
420
421
# File 'lib/CustomerManagementService.rb', line 417

def initialize(firstName = nil, lastName = nil, middleInitial = nil)
  @firstName = firstName
  @lastName = lastName
  @middleInitial = middleInitial
end

Instance Attribute Details

#firstNameObject

Returns the value of attribute firstName.


413
414
415
# File 'lib/CustomerManagementService.rb', line 413

def firstName
  @firstName
end

#lastNameObject

Returns the value of attribute lastName.


414
415
416
# File 'lib/CustomerManagementService.rb', line 414

def lastName
  @lastName
end

#middleInitialObject

Returns the value of attribute middleInitial.


415
416
417
# File 'lib/CustomerManagementService.rb', line 415

def middleInitial
  @middleInitial
end