Class: Stripe::Terminal::ConfigurationService::UpdateParams::Offline
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Terminal::ConfigurationService::UpdateParams::Offline
- Defined in:
- lib/stripe/services/terminal/configuration_service.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.
33 34 35 |
# File 'lib/stripe/services/terminal/configuration_service.rb', line 33 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.
31 32 33 |
# File 'lib/stripe/services/terminal/configuration_service.rb', line 31 def enabled @enabled end |