Class: Evolis::PremiumSdk::Sdk
- Inherits:
-
Object
- Object
- Evolis::PremiumSdk::Sdk
- Defined in:
- lib/evolis/premium_sdk.rb
Instance Attribute Summary collapse
- #addon ⇒ Addon readonly
- #cmd ⇒ Cmd readonly
- #echo ⇒ Echo readonly
- #espf ⇒ Espf readonly
- #print ⇒ Print readonly
- #setting ⇒ Setting readonly
- #supervision ⇒ Supervision readonly
Instance Method Summary collapse
-
#initialize(host, port) ⇒ Sdk
constructor
Initialize child classes so they can be used directly under a Evolis::PremiumSdk.new.
Constructor Details
#initialize(host, port) ⇒ Sdk
Initialize child classes so they can be used directly under a Evolis::PremiumSdk.new
41 42 43 44 45 46 47 48 49 |
# File 'lib/evolis/premium_sdk.rb', line 41 def initialize(host, port) @addon = Addon.new host, port @cmd = Cmd.new host, port @echo = Echo.new host, port @espf = Espf.new host, port @print = Print.new host, port @setting = Setting.new host, port @supervision = Supervision.new host, port end |
Instance Attribute Details
#setting ⇒ Setting (readonly)
32 33 34 |
# File 'lib/evolis/premium_sdk.rb', line 32 def setting @setting end |
#supervision ⇒ Supervision (readonly)
35 36 37 |
# File 'lib/evolis/premium_sdk.rb', line 35 def supervision @supervision end |