Class: AdCenterWrapper::CustomerInfo

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

Overview

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

id - SOAP::SOAPLong
name - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, name = nil) ⇒ CustomerInfo

Returns a new instance of CustomerInfo.

[View source]

435
436
437
438
# File 'lib/CustomerManagementService.rb', line 435

def initialize(id = nil, name = nil)
  @id = id
  @name = name
end

Instance Attribute Details

#idObject

Returns the value of attribute id.


432
433
434
# File 'lib/CustomerManagementService.rb', line 432

def id
  @id
end

#nameObject

Returns the value of attribute name.


433
434
435
# File 'lib/CustomerManagementService.rb', line 433

def name
  @name
end