Class: Humidifier::ASK::Skill
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an Alexa::ASK::Skill resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#authentication_configuration ⇒ Object
returns the AuthenticationConfiguration property.
-
#authentication_configuration=(value) ⇒ Object
sets the AuthenticationConfiguration property (Structure).
-
#skill_package ⇒ Object
returns the SkillPackage property.
-
#skill_package=(value) ⇒ Object
sets the SkillPackage property (Structure).
-
#vendor_id ⇒ Object
returns the VendorId property.
-
#vendor_id=(value) ⇒ Object
sets the VendorId property (String).
Methods inherited from Resource
#initialize, #method_missing, prop?, #respond_to_missing?, #to_cf, #update, #update_attributes, #update_property
Constructor Details
This class inherits a constructor from Humidifier::Resource
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Humidifier::Resource
Instance Method Details
#authentication_configuration ⇒ Object
returns the AuthenticationConfiguration property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def authentication_configuration properties['authentication_configuration'] end |
#authentication_configuration=(value) ⇒ Object
sets the AuthenticationConfiguration property (Structure)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def authentication_configuration=(value) update_property('authentication_configuration', value) end |
#skill_package ⇒ Object
returns the SkillPackage property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def skill_package properties['skill_package'] end |
#skill_package=(value) ⇒ Object
sets the SkillPackage property (Structure)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def skill_package=(value) update_property('skill_package', value) end |
#vendor_id ⇒ Object
returns the VendorId property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def vendor_id properties['vendor_id'] end |
#vendor_id=(value) ⇒ Object
sets the VendorId property (String)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def vendor_id=(value) update_property('vendor_id', value) end |