Class: AdCenterWrapper::AccountInfo
- Inherits:
-
Object
- Object
- AdCenterWrapper::AccountInfo
- 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
-
#accountLifeCycleStatus ⇒ Object
Returns the value of attribute accountLifeCycleStatus.
-
#id ⇒ Object
Returns the value of attribute id.
-
#name ⇒ Object
Returns the value of attribute name.
-
#number ⇒ Object
Returns the value of attribute number.
-
#pauseReason ⇒ Object
Returns the value of attribute pauseReason.
Instance Method Summary collapse
-
#initialize(id = nil, name = nil, number = nil, accountLifeCycleStatus = nil, pauseReason = nil) ⇒ AccountInfo
constructor
A new instance of AccountInfo.
Constructor Details
permalink #initialize(id = nil, name = nil, number = nil, accountLifeCycleStatus = nil, pauseReason = nil) ⇒ AccountInfo
Returns a new instance of AccountInfo.
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
permalink #accountLifeCycleStatus ⇒ Object
Returns the value of attribute accountLifeCycleStatus.
20 21 22 |
# File 'lib/CustomerManagementService.rb', line 20 def accountLifeCycleStatus @accountLifeCycleStatus end |
permalink #id ⇒ Object
Returns the value of attribute id.
17 18 19 |
# File 'lib/CustomerManagementService.rb', line 17 def id @id end |
permalink #name ⇒ Object
Returns the value of attribute name.
18 19 20 |
# File 'lib/CustomerManagementService.rb', line 18 def name @name end |
permalink #number ⇒ Object
Returns the value of attribute number.
19 20 21 |
# File 'lib/CustomerManagementService.rb', line 19 def number @number end |
permalink #pauseReason ⇒ Object
Returns the value of attribute pauseReason.
21 22 23 |
# File 'lib/CustomerManagementService.rb', line 21 def pauseReason @pauseReason end |