Google Actions Type

google-assistant

#1

Hi all,
I would have a problem with defining types for google actions builder. In the conversational model I inserted actions.type.DateTime. Doing the tests I see that in the jovo logs if the user says “May 5” returns the string “May 5” and not the date format. Instead, checking the InteractionMatch event from the Google action builder console resolves the value I give to the date.
What could be the problem?
Thanks!


#2

Hey @Ire
Welcome to the Jovo-Community.

You can acess the parsed value via this.$input.DATEINPUTNAME.ìd or this.$input.DATEINPUTNAME.key


#3

Hi AlexSwe, thank you!
So Google compared to alexa doesn’t send me the value already solved. Setting the value as " actions.type.DateTime" then I have to create the string by taking the individual values and using that. Thanks!