Class: AdCenterWrapper::ReportRequest

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

Overview

https://adcenter.microsoft.com/v8ReportRequest

format - AdCenterWrapper::ReportFormat
language - AdCenterWrapper::ReportLanguage
reportName - SOAP::SOAPString
returnOnlyCompleteData - SOAP::SOAPBoolean

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil) ⇒ ReportRequest

Returns a new instance of ReportRequest.

[View source]

17
18
19
20
21
22
# File 'lib/ReportingService.rb', line 17

def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil)
  @format = format
  @language = language
  @reportName = reportName
  @returnOnlyCompleteData = returnOnlyCompleteData
end

Instance Attribute Details

#formatObject

Returns the value of attribute format.


12
13
14
# File 'lib/ReportingService.rb', line 12

def format
  @format
end

#languageObject

Returns the value of attribute language.


13
14
15
# File 'lib/ReportingService.rb', line 13

def language
  @language
end

#reportNameObject

Returns the value of attribute reportName.


14
15
16
# File 'lib/ReportingService.rb', line 14

def reportName
  @reportName
end

#returnOnlyCompleteDataObject

Returns the value of attribute returnOnlyCompleteData.


15
16
17
# File 'lib/ReportingService.rb', line 15

def returnOnlyCompleteData
  @returnOnlyCompleteData
end