Class: Stripe::V2::Reporting::ReportRunService::CreateParams::ReportParameters
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Reporting::ReportRunService::CreateParams::ReportParameters
- Defined in:
- lib/stripe/services/v2/reporting/report_run_service.rb
Defined Under Namespace
Classes: ArrayValue
Instance Attribute Summary collapse
-
#array_value ⇒ Object
Parameter with an array data type.
-
#string_value ⇒ Object
Parameter with a string data type.
-
#timestamp_value ⇒ Object
Parameter with a timestamp data type.
Instance Method Summary collapse
-
#initialize(array_value: nil, string_value: nil, timestamp_value: nil) ⇒ ReportParameters
constructor
A new instance of ReportParameters.
Methods inherited from RequestParams
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 = end |
Instance Attribute Details
#array_value ⇒ Object
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_value ⇒ Object
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_value ⇒ Object
Parameter with a timestamp data type.
23 24 25 |
# File 'lib/stripe/services/v2/reporting/report_run_service.rb', line 23 def @timestamp_value end |