Class: AdCenterWrapper::CustomerInfo
- Inherits:
-
Object
- Object
- AdCenterWrapper::CustomerInfo
- Defined in:
- lib/CustomerManagementService.rb
Overview
https://adcenter.microsoft.com/api/customermanagement/EntitiesCustomerInfo
id - SOAP::SOAPLong
name - SOAP::SOAPString
Instance Attribute Summary collapse
-
#id ⇒ Object
Returns the value of attribute id.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(id = nil, name = nil) ⇒ CustomerInfo
constructor
A new instance of CustomerInfo.
Constructor Details
permalink #initialize(id = nil, name = nil) ⇒ CustomerInfo
Returns a new instance of CustomerInfo.
435 436 437 438 |
# File 'lib/CustomerManagementService.rb', line 435 def initialize(id = nil, name = nil) @id = id @name = name end |
Instance Attribute Details
permalink #id ⇒ Object
Returns the value of attribute id.
432 433 434 |
# File 'lib/CustomerManagementService.rb', line 432 def id @id end |
permalink #name ⇒ Object
Returns the value of attribute name.
433 434 435 |
# File 'lib/CustomerManagementService.rb', line 433 def name @name end |