Class: Stripe::PaymentIntentUpdateParams::PaymentDetails::CarRentalDatum::Affiliate
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentUpdateParams::PaymentDetails::CarRentalDatum::Affiliate
- Defined in:
- lib/stripe/params/payment_intent_update_params.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
Affiliate partner code.
-
#name ⇒ Object
Name of affiliate partner.
Instance Method Summary collapse
-
#initialize(code: nil, name: nil) ⇒ Affiliate
constructor
A new instance of Affiliate.
Methods inherited from RequestParams
Constructor Details
#initialize(code: nil, name: nil) ⇒ Affiliate
Returns a new instance of Affiliate.
480 481 482 483 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 480 def initialize(code: nil, name: nil) @code = code @name = name end |
Instance Attribute Details
#code ⇒ Object
Affiliate partner code.
476 477 478 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 476 def code @code end |
#name ⇒ Object
Name of affiliate partner.
478 479 480 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 478 def name @name end |