Class: AdCenterWrapper::TargetInfo

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

Overview

https://adcenter.microsoft.com/v8TargetInfo

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of TargetInfo.

[View source]

1225
1226
1227
1228
# File 'lib/CampaignManagementService.rb', line 1225

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

Instance Attribute Details

#idObject

Returns the value of attribute id.


1222
1223
1224
# File 'lib/CampaignManagementService.rb', line 1222

def id
  @id
end

#nameObject

Returns the value of attribute name.


1223
1224
1225
# File 'lib/CampaignManagementService.rb', line 1223

def name
  @name
end