Class: IsRoamingConstraint

Inherits:
Constraint show all
Defined in:
lib/ruby-macrodroid.rb

Overview

Category: Connectivity

Instance Attribute Summary

Attributes inherited from MacroObject

#options, #type

Instance Method Summary collapse

Methods inherited from Constraint

#match?

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(h = {}) ⇒ IsRoamingConstraint

Returns a new instance of IsRoamingConstraint.



3531
3532
3533
3534
3535
3536
3537
3538
3539
# File 'lib/ruby-macrodroid.rb', line 3531

def initialize(h={})

  options = {
    is_roaming: true
  }

  super(options.merge h)

end