Class: AdCenterWrapper::AccountInfoWithCustomerData

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

Overview

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

customerId - SOAP::SOAPLong
customerName - SOAP::SOAPString
accountId - SOAP::SOAPLong
accountName - SOAP::SOAPString
accountNumber - SOAP::SOAPString
accountLifeCycleStatus - AdCenterWrapper::AccountLifeCycleStatus
pauseReason - SOAP::SOAPUnsignedByte

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(customerId = nil, customerName = nil, accountId = nil, accountName = nil, accountNumber = nil, accountLifeCycleStatus = nil, pauseReason = nil) ⇒ AccountInfoWithCustomerData

Returns a new instance of AccountInfoWithCustomerData.

[View source]

496
497
498
499
500
501
502
503
504
# File 'lib/CustomerManagementService.rb', line 496

def initialize(customerId = nil, customerName = nil, accountId = nil, accountName = nil, accountNumber = nil, accountLifeCycleStatus = nil, pauseReason = nil)
  @customerId = customerId
  @customerName = customerName
  @accountId = accountId
  @accountName = accountName
  @accountNumber = accountNumber
  @accountLifeCycleStatus = accountLifeCycleStatus
  @pauseReason = pauseReason
end

Instance Attribute Details

#accountIdObject

Returns the value of attribute accountId.


490
491
492
# File 'lib/CustomerManagementService.rb', line 490

def accountId
  @accountId
end

#accountLifeCycleStatusObject

Returns the value of attribute accountLifeCycleStatus.


493
494
495
# File 'lib/CustomerManagementService.rb', line 493

def accountLifeCycleStatus
  @accountLifeCycleStatus
end

#accountNameObject

Returns the value of attribute accountName.


491
492
493
# File 'lib/CustomerManagementService.rb', line 491

def accountName
  @accountName
end

#accountNumberObject

Returns the value of attribute accountNumber.


492
493
494
# File 'lib/CustomerManagementService.rb', line 492

def accountNumber
  @accountNumber
end

#customerIdObject

Returns the value of attribute customerId.


488
489
490
# File 'lib/CustomerManagementService.rb', line 488

def customerId
  @customerId
end

#customerNameObject

Returns the value of attribute customerName.


489
490
491
# File 'lib/CustomerManagementService.rb', line 489

def customerName
  @customerName
end

#pauseReasonObject

Returns the value of attribute pauseReason.


494
495
496
# File 'lib/CustomerManagementService.rb', line 494

def pauseReason
  @pauseReason
end