Class: AdCenterWrapper::AccountInfo

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

Overview

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

id - SOAP::SOAPLong
name - SOAP::SOAPString
number - SOAP::SOAPString
accountLifeCycleStatus - AdCenterWrapper::AccountLifeCycleStatus
pauseReason - SOAP::SOAPUnsignedByte

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, name = nil, number = nil, accountLifeCycleStatus = nil, pauseReason = nil) ⇒ AccountInfo

Returns a new instance of AccountInfo.

[View source]

23
24
25
26
27
28
29
# File 'lib/CustomerManagementService.rb', line 23

def initialize(id = nil, name = nil, number = nil, accountLifeCycleStatus = nil, pauseReason = nil)
  @id = id
  @name = name
  @number = number
  @accountLifeCycleStatus = accountLifeCycleStatus
  @pauseReason = pauseReason
end

Instance Attribute Details

#accountLifeCycleStatusObject

Returns the value of attribute accountLifeCycleStatus.


20
21
22
# File 'lib/CustomerManagementService.rb', line 20

def accountLifeCycleStatus
  @accountLifeCycleStatus
end

#idObject

Returns the value of attribute id.


17
18
19
# File 'lib/CustomerManagementService.rb', line 17

def id
  @id
end

#nameObject

Returns the value of attribute name.


18
19
20
# File 'lib/CustomerManagementService.rb', line 18

def name
  @name
end

#numberObject

Returns the value of attribute number.


19
20
21
# File 'lib/CustomerManagementService.rb', line 19

def number
  @number
end

#pauseReasonObject

Returns the value of attribute pauseReason.


21
22
23
# File 'lib/CustomerManagementService.rb', line 21

def pauseReason
  @pauseReason
end