Class: Stripe::PaymentRecordReportPaymentParams::PaymentMethodDetails::Custom
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentRecordReportPaymentParams::PaymentMethodDetails::Custom
- Defined in:
- lib/stripe/params/payment_record_report_payment_params.rb
Instance Attribute Summary collapse
-
#display_name ⇒ Object
Display name for the custom (user-defined) payment method type used to make this payment.
-
#type ⇒ Object
The custom payment method type associated with this payment.
Instance Method Summary collapse
-
#initialize(display_name: nil, type: nil) ⇒ Custom
constructor
A new instance of Custom.
Methods inherited from RequestParams
Constructor Details
#initialize(display_name: nil, type: nil) ⇒ Custom
Returns a new instance of Custom.
109 110 111 112 |
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 109 def initialize(display_name: nil, type: nil) @display_name = display_name @type = type end |
Instance Attribute Details
#display_name ⇒ Object
Display name for the custom (user-defined) payment method type used to make this payment.
105 106 107 |
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 105 def display_name @display_name end |
#type ⇒ Object
The custom payment method type associated with this payment.
107 108 109 |
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 107 def type @type end |