Class: Stripe::PaymentIntentCreateParams::PaymentDetails::LodgingDatum::Affiliate
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentCreateParams::PaymentDetails::LodgingDatum::Affiliate
- Defined in:
- lib/stripe/params/payment_intent_create_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.
1584 1585 1586 1587 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1584 def initialize(code: nil, name: nil) @code = code @name = name end |
Instance Attribute Details
#code ⇒ Object
Affiliate partner code.
1580 1581 1582 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1580 def code @code end |
#name ⇒ Object
Affiliate partner name.
1582 1583 1584 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1582 def name @name end |