Class: Stripe::Terminal::Configuration::UpdateParams::Offline
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Terminal::Configuration::UpdateParams::Offline
- Defined in:
- lib/stripe/resources/terminal/configuration.rb
Instance Attribute Summary collapse
-
#enabled ⇒ Object
Determines whether to allow transactions to be collected while reader is offline.
Instance Method Summary collapse
-
#initialize(enabled: nil) ⇒ Offline
constructor
A new instance of Offline.
Methods inherited from RequestParams
Constructor Details
#initialize(enabled: nil) ⇒ Offline
Returns a new instance of Offline.
281 282 283 |
# File 'lib/stripe/resources/terminal/configuration.rb', line 281 def initialize(enabled: nil) @enabled = enabled end |
Instance Attribute Details
#enabled ⇒ Object
Determines whether to allow transactions to be collected while reader is offline. Defaults to false.
279 280 281 |
# File 'lib/stripe/resources/terminal/configuration.rb', line 279 def enabled @enabled end |