Class: Stripe::Issuing::AuthorizationCaptureParams::PurchaseDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::AuthorizationCaptureParams::PurchaseDetails
- Defined in:
- lib/stripe/params/issuing/authorization_capture_params.rb
Defined Under Namespace
Classes: Fleet, Flight, Fuel, Lodging, Receipt
Instance Attribute Summary collapse
-
#fleet ⇒ Object
Fleet-specific information for transactions using Fleet cards.
-
#flight ⇒ Object
Information about the flight that was purchased with this transaction.
-
#fuel ⇒ Object
Information about fuel that was purchased with this transaction.
-
#lodging ⇒ Object
Information about lodging that was purchased with this transaction.
-
#receipt ⇒ Object
The line items in the purchase.
-
#reference ⇒ Object
A merchant-specific order number.
Instance Method Summary collapse
-
#initialize(fleet: nil, flight: nil, fuel: nil, lodging: nil, receipt: nil, reference: nil) ⇒ PurchaseDetails
constructor
A new instance of PurchaseDetails.
Methods inherited from RequestParams
Constructor Details
#initialize(fleet: nil, flight: nil, fuel: nil, lodging: nil, receipt: nil, reference: nil) ⇒ PurchaseDetails
Returns a new instance of PurchaseDetails.
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 |
# File 'lib/stripe/params/issuing/authorization_capture_params.rb', line 227 def initialize( fleet: nil, flight: nil, fuel: nil, lodging: nil, receipt: nil, reference: nil ) @fleet = fleet @flight = flight @fuel = fuel @lodging = lodging @receipt = receipt @reference = reference end |
Instance Attribute Details
#fleet ⇒ Object
Fleet-specific information for transactions using Fleet cards.
215 216 217 |
# File 'lib/stripe/params/issuing/authorization_capture_params.rb', line 215 def fleet @fleet end |
#flight ⇒ Object
Information about the flight that was purchased with this transaction.
217 218 219 |
# File 'lib/stripe/params/issuing/authorization_capture_params.rb', line 217 def flight @flight end |
#fuel ⇒ Object
Information about fuel that was purchased with this transaction.
219 220 221 |
# File 'lib/stripe/params/issuing/authorization_capture_params.rb', line 219 def fuel @fuel end |
#lodging ⇒ Object
Information about lodging that was purchased with this transaction.
221 222 223 |
# File 'lib/stripe/params/issuing/authorization_capture_params.rb', line 221 def lodging @lodging end |
#receipt ⇒ Object
The line items in the purchase.
223 224 225 |
# File 'lib/stripe/params/issuing/authorization_capture_params.rb', line 223 def receipt @receipt end |
#reference ⇒ Object
A merchant-specific order number.
225 226 227 |
# File 'lib/stripe/params/issuing/authorization_capture_params.rb', line 225 def reference @reference end |