Class: Stripe::V2::Reporting::ReportRunService::CreateParams::ReportParameters

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/v2/reporting/report_run_service.rb

Defined Under Namespace

Classes: ArrayValue

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(array_value: nil, string_value: nil, timestamp_value: nil) ⇒ ReportParameters

Returns a new instance of ReportParameters.



25
26
27
28
29
# File 'lib/stripe/services/v2/reporting/report_run_service.rb', line 25

def initialize(array_value: nil, string_value: nil, timestamp_value: nil)
  @array_value = array_value
  @string_value = string_value
  @timestamp_value = timestamp_value
end

Instance Attribute Details

#array_valueObject

Parameter with an array data type.



19
20
21
# File 'lib/stripe/services/v2/reporting/report_run_service.rb', line 19

def array_value
  @array_value
end

#string_valueObject

Parameter with a string data type.



21
22
23
# File 'lib/stripe/services/v2/reporting/report_run_service.rb', line 21

def string_value
  @string_value
end

#timestamp_valueObject

Parameter with a timestamp data type.



23
24
25
# File 'lib/stripe/services/v2/reporting/report_run_service.rb', line 23

def timestamp_value
  @timestamp_value
end