Class: Stripe::PaymentRecordReportRefundParams::ProcessorDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentRecordReportRefundParams::ProcessorDetails
- Defined in:
- lib/stripe/params/payment_record_report_refund_params.rb
Defined Under Namespace
Classes: Custom
Instance Attribute Summary collapse
-
#custom ⇒ Object
Information about the custom processor used to make this refund.
-
#type ⇒ Object
The type of the processor details.
Instance Method Summary collapse
-
#initialize(custom: nil, type: nil) ⇒ ProcessorDetails
constructor
A new instance of ProcessorDetails.
Methods inherited from RequestParams
Constructor Details
#initialize(custom: nil, type: nil) ⇒ ProcessorDetails
Returns a new instance of ProcessorDetails.
32 33 34 35 |
# File 'lib/stripe/params/payment_record_report_refund_params.rb', line 32 def initialize(custom: nil, type: nil) @custom = custom @type = type end |
Instance Attribute Details
#custom ⇒ Object
Information about the custom processor used to make this refund.
28 29 30 |
# File 'lib/stripe/params/payment_record_report_refund_params.rb', line 28 def custom @custom end |
#type ⇒ Object
The type of the processor details. An additional hash is included on processor_details with a name matching this value. It contains additional information specific to the processor.
30 31 32 |
# File 'lib/stripe/params/payment_record_report_refund_params.rb', line 30 def type @type end |