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.



3302
3303
3304
3305
3306
3307
3308
3309
3310
# File 'lib/ruby-macrodroid.rb', line 3302

def initialize(h={})

  options = {
    is_roaming: true
  }

  super(options.merge h)

end