Class: AutoSyncConstraint

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

Overview

Category: Device State

Instance Attribute Summary

Attributes inherited from MacroObject

#options, #type

Instance Method Summary collapse

Methods inherited from Constraint

#match?

Methods inherited from MacroObject

#to_h, #to_s

Constructor Details

#initialize(h = {}) ⇒ AutoSyncConstraint

Returns a new instance of AutoSyncConstraint.



4485
4486
4487
4488
4489
4490
4491
4492
4493
# File 'lib/ruby-macrodroid.rb', line 4485

def initialize(h={})

  options = {
    enabled: false
  }

  super(options.merge h)

end