Created
April 18, 2021 17:18
-
-
Save kinisoftware/5bdba4879df1d7a92f4b21ca7f528962 to your computer and use it in GitHub Desktop.
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 characters
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> {...} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment