Class: Stripe::PaymentIntentUpdateParams::PaymentDetails::LodgingDatum::Affiliate
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentUpdateParams::PaymentDetails::LodgingDatum::Affiliate
- Defined in:
- lib/stripe/params/payment_intent_update_params.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
Affiliate partner code.
-
#name ⇒ Object
Affiliate partner name.
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.
1549 1550 1551 1552 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1549 def initialize(code: nil, name: nil) @code = code @name = name end |
Instance Attribute Details
#code ⇒ Object
Affiliate partner code.
1545 1546 1547 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1545 def code @code end |
#name ⇒ Object
Affiliate partner name.
1547 1548 1549 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1547 def name @name end |