Created
April 18, 2021 17:18
-
-
Save kinisoftware/5bdba4879df1d7a92f4b21ca7f528962 to your computer and use it in GitHub Desktop.
Revisions
-
Joaquin Engelmo Moriche created this gist
Apr 18, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ class NextIntentHandler : RequestHandler { override fun canHandle(input: HandlerInput) = input.matches( intentName("AMAZON.NextIntent") .or(Predicates.requestType(NextCommandIssuedRequest::class.java)) ) override fun handle(input: HandlerInput): Optional<Response> {...} }