Class: Stripe::Terminal::ConfigurationCreateParams::Offline
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Terminal::ConfigurationCreateParams::Offline
- Defined in:
- lib/stripe/params/terminal/configuration_create_params.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.
29 30 31 |
# File 'lib/stripe/params/terminal/configuration_create_params.rb', line 29 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.
27 28 29 |
# File 'lib/stripe/params/terminal/configuration_create_params.rb', line 27 def enabled @enabled end |