class BetterAlexaRubyKit::LaunchRequest

Public Class Methods

new(json_request) click to toggle source

We still don't know if all of the parameters in the request are required. Checking for the presence of intent on an IntentRequest.

Calls superclass method
# File lib/better_alexa_rubykit/launch_request.rb, line 5
def initialize(json_request)
  super
  @type = 'LAUNCH_REQUEST'
end

Public Instance Methods

to_s() click to toggle source

Outputs the launch requestID.

# File lib/better_alexa_rubykit/launch_request.rb, line 11
def to_s
  "LaunchRequest requestID: #{request_id}"
end