Class: Stripe::Checkout::SessionUpdateParams::CollectedInformation::ShippingDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Checkout::SessionUpdateParams::CollectedInformation::ShippingDetails
- Defined in:
- lib/stripe/params/checkout/session_update_params.rb
Defined Under Namespace
Classes: Address
Instance Attribute Summary collapse
-
#address ⇒ Object
The address of the customer.
-
#name ⇒ Object
The name of customer.
Instance Method Summary collapse
-
#initialize(address: nil, name: nil) ⇒ ShippingDetails
constructor
A new instance of ShippingDetails.
Methods inherited from RequestParams
Constructor Details
#initialize(address: nil, name: nil) ⇒ ShippingDetails
44 45 46 47 |
# File 'lib/stripe/params/checkout/session_update_params.rb', line 44 def initialize(address: nil, name: nil) @address = address @name = name end |
Instance Attribute Details
#address ⇒ Object
The address of the customer
40 41 42 |
# File 'lib/stripe/params/checkout/session_update_params.rb', line 40 def address @address end |
#name ⇒ Object
The name of customer
42 43 44 |
# File 'lib/stripe/params/checkout/session_update_params.rb', line 42 def name @name end |