Class: Stripe::Tax::CalculationCreateParams::ShipFromDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Tax::CalculationCreateParams::ShipFromDetails
- Defined in:
- lib/stripe/params/tax/calculation_create_params.rb
Defined Under Namespace
Classes: Address
Instance Attribute Summary collapse
-
#address ⇒ Object
The address from which the goods are being shipped from.
Instance Method Summary collapse
-
#initialize(address: nil) ⇒ ShipFromDetails
constructor
A new instance of ShipFromDetails.
Methods inherited from RequestParams
Constructor Details
#initialize(address: nil) ⇒ ShipFromDetails
Returns a new instance of ShipFromDetails.
146 147 148 |
# File 'lib/stripe/params/tax/calculation_create_params.rb', line 146 def initialize(address: nil) @address = address end |
Instance Attribute Details
#address ⇒ Object
The address from which the goods are being shipped from.
144 145 146 |
# File 'lib/stripe/params/tax/calculation_create_params.rb', line 144 def address @address end |