Gets the user's raw input query.
Will also be sent via intent handler 2nd argument which is the encouraged method to retrieve.
// Encouraged method through intent handler app.intent('actions.intent.TEXT', (conv, input) => { conv.close(`You said ${input}`) }) // Using conv.input.raw app.intent('actions.intent.TEXT', conv => { conv.close(`You said ${conv.input.raw}`) })
Gets type of input used for this request.
Generated using TypeDoc
Gets the user's raw input query.
Will also be sent via intent handler 2nd argument which is the encouraged method to retrieve.
// Encouraged method through intent handler app.intent('actions.intent.TEXT', (conv, input) => { conv.close(`You said ${input}`) }) // Using conv.input.raw app.intent('actions.intent.TEXT', conv => { conv.close(`You said ${conv.input.raw}`) })