Class: AdCenterWrapper::TextAd

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

Overview

https://adcenter.microsoft.com/v8TextAd

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.


81
82
83
84
85
86
87
88
89
90
# File 'lib/CampaignManagementService.rb', line 81

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.


76
77
78
# File 'lib/CampaignManagementService.rb', line 76

def destinationUrl
  @destinationUrl
end

#displayUrlObject

Returns the value of attribute displayUrl.


77
78
79
# File 'lib/CampaignManagementService.rb', line 77

def displayUrl
  @displayUrl
end

#editorialStatusObject

Returns the value of attribute editorialStatus.


72
73
74
# File 'lib/CampaignManagementService.rb', line 72

def editorialStatus
  @editorialStatus
end

#idObject

Returns the value of attribute id.


73
74
75
# File 'lib/CampaignManagementService.rb', line 73

def id
  @id
end

#statusObject

Returns the value of attribute status.


74
75
76
# File 'lib/CampaignManagementService.rb', line 74

def status
  @status
end

#textObject

Returns the value of attribute text.


78
79
80
# File 'lib/CampaignManagementService.rb', line 78

def text
  @text
end

#titleObject

Returns the value of attribute title.


79
80
81
# File 'lib/CampaignManagementService.rb', line 79

def title
  @title
end

#typeObject

Returns the value of attribute type.


75
76
77
# File 'lib/CampaignManagementService.rb', line 75

def type
  @type
end