Class: Stripe::PaymentMethodCreateParams::Custom
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentMethodCreateParams::Custom
- Defined in:
- lib/stripe/params/payment_method_create_params.rb
Instance Attribute Summary collapse
-
#type ⇒ Object
ID of the Dashboard-only CustomPaymentMethodType.
Instance Method Summary collapse
-
#initialize(type: nil) ⇒ Custom
constructor
A new instance of Custom.
Methods inherited from RequestParams
Constructor Details
#initialize(type: nil) ⇒ Custom
Returns a new instance of Custom.
162 163 164 |
# File 'lib/stripe/params/payment_method_create_params.rb', line 162 def initialize(type: nil) @type = type end |
Instance Attribute Details
#type ⇒ Object
ID of the Dashboard-only CustomPaymentMethodType. This field is used by Stripe products’ internal code to support CPMs.
160 161 162 |
# File 'lib/stripe/params/payment_method_create_params.rb', line 160 def type @type end |