Class: AdCenterWrapper::TextAd

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

Overview

https://adcenter.microsoft.com/v7TextAd

editorialStatus - AdCenterWrapper::AdEditorialStatus
id - SOAP::SOAPLong
status - AdCenterWrapper::AdStatus
type - AdCenterWrapper::AdType
destinationUrl - SOAP::SOAPString
displayUrl - SOAP::SOAPString
text - SOAP::SOAPString
title - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(editorialStatus = nil, id = nil, status = nil, type = nil, destinationUrl = nil, displayUrl = nil, text = nil, title = nil) ⇒ TextAd

Returns a new instance of TextAd.



159
160
161
162
163
164
165
166
167
168
# File 'lib/adcenter_wrapper_entities.rb', line 159

def initialize(editorialStatus = nil, id = nil, status = nil, type = nil, destinationUrl = nil, displayUrl = nil, text = nil, title = nil)
  @editorialStatus = editorialStatus
  @id = id
  @status = status
  @type = type
  @destinationUrl = destinationUrl
  @displayUrl = displayUrl
  @text = text
  @title = title
end

Instance Attribute Details

#destinationUrlObject

Returns the value of attribute destinationUrl.



154
155
156
# File 'lib/adcenter_wrapper_entities.rb', line 154

def destinationUrl
  @destinationUrl
end

#displayUrlObject

Returns the value of attribute displayUrl.



155
156
157
# File 'lib/adcenter_wrapper_entities.rb', line 155

def displayUrl
  @displayUrl
end

#editorialStatusObject

Returns the value of attribute editorialStatus.



150
151
152
# File 'lib/adcenter_wrapper_entities.rb', line 150

def editorialStatus
  @editorialStatus
end

#idObject

Returns the value of attribute id.



151
152
153
# File 'lib/adcenter_wrapper_entities.rb', line 151

def id
  @id
end

#statusObject

Returns the value of attribute status.



152
153
154
# File 'lib/adcenter_wrapper_entities.rb', line 152

def status
  @status
end

#textObject

Returns the value of attribute text.



156
157
158
# File 'lib/adcenter_wrapper_entities.rb', line 156

def text
  @text
end

#titleObject

Returns the value of attribute title.



157
158
159
# File 'lib/adcenter_wrapper_entities.rb', line 157

def title
  @title
end

#typeObject

Returns the value of attribute type.



153
154
155
# File 'lib/adcenter_wrapper_entities.rb', line 153

def type
  @type
end