Class: YSM::BasicReportService::BasicReportRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/ysm4r/v1/BasicReportService.rb,
lib/ysm4r/v2/BasicReportService.rb

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(dateRange = nil, endDate = nil, reportName = nil, reportType = nil, startDate = nil) ⇒ BasicReportRequest

Returns a new instance of BasicReportRequest.



36
37
38
39
40
41
42
# File 'lib/ysm4r/v1/BasicReportService.rb', line 36

def initialize(dateRange = nil, endDate = nil, reportName = nil, reportType = nil, startDate = nil)
  @dateRange = dateRange
  @endDate = endDate
  @reportName = reportName
  @reportType = reportType
  @startDate = startDate
end

Instance Attribute Details

#dateRangeObject

Returns the value of attribute dateRange.



30
31
32
# File 'lib/ysm4r/v1/BasicReportService.rb', line 30

def dateRange
  @dateRange
end

#endDateObject

Returns the value of attribute endDate.



31
32
33
# File 'lib/ysm4r/v1/BasicReportService.rb', line 31

def endDate
  @endDate
end

#reportNameObject

Returns the value of attribute reportName.



32
33
34
# File 'lib/ysm4r/v1/BasicReportService.rb', line 32

def reportName
  @reportName
end

#reportTypeObject

Returns the value of attribute reportType.



33
34
35
# File 'lib/ysm4r/v1/BasicReportService.rb', line 33

def reportType
  @reportType
end

#startDateObject

Returns the value of attribute startDate.



34
35
36
# File 'lib/ysm4r/v1/BasicReportService.rb', line 34

def startDate
  @startDate
end