I'm using the AMAZON.DURATION
built-int slot type to get data from my custom Alexa skill. This works perfectly and converts the given duration to an ISO-8601 duration format.
For example, the slot type successfully converts "ten minutes" to PT10M
and I can get this data from the request object passed to my Lambda function.
However, I would also like to pass the unformatted "ten minutes" to my Lambda function, too.
Is this possible?