Class: IsRoamingConstraint
- Inherits:
-
Constraint
- Object
- MacroObject
- Constraint
- IsRoamingConstraint
- Defined in:
- lib/ruby-macrodroid.rb
Overview
Category: Connectivity
Instance Attribute Summary
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ IsRoamingConstraint
constructor
A new instance of IsRoamingConstraint.
- #to_s(colour: false) ⇒ Object (also: #to_summary)
Methods inherited from Constraint
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ IsRoamingConstraint
Returns a new instance of IsRoamingConstraint.
5012 5013 5014 5015 5016 5017 5018 5019 5020 |
# File 'lib/ruby-macrodroid.rb', line 5012 def initialize(h={}) = { is_roaming: true } super(.merge h) end |
Instance Method Details
#to_s(colour: false) ⇒ Object Also known as: to_summary
5022 5023 5024 |
# File 'lib/ruby-macrodroid.rb', line 5022 def to_s(colour: false) 'IsRoamingConstraint ' + @h.inspect end |