Class: IsRoamingConstraint

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

Overview

Category: Connectivity

Instance Attribute Summary

Attributes inherited from MacroObject

#options, #siguid, #type

Instance Method Summary collapse

Methods inherited from Constraint

#match?

Methods inherited from MacroObject

#to_h, #to_s

Constructor Details

#initialize(h = {}) ⇒ IsRoamingConstraint

Returns a new instance of IsRoamingConstraint.



4347
4348
4349
4350
4351
4352
4353
4354
4355
# File 'lib/ruby-macrodroid.rb', line 4347

def initialize(h={})

  options = {
    is_roaming: true
  }

  super(options.merge h)

end