class AlexaWebService::HintDirective

Attributes

directive[RW]

Public Class Methods

new(hint) click to toggle source
# File lib/alexa_web_service/hint_directive.rb, line 5
def initialize(hint) 
    @directive = {
    "type": "Hint",
    "hint": {
      "type": "PlainText",
      "text": hint
    }
  }
end