eristemena / dialogflow-fulfillment-webhook-php

Dialogflow agent fulfillment PHP library supporting v1 & v2
MIT License
104 stars 47 forks source link

Original Parameters #44

Open codinghusi opened 4 years ago

codinghusi commented 4 years ago

Google passes the parameters with its data and the original text pattern. It would be great if I could get those with

$agent->getOriginalParameters();

Example request:

{
    ...
    "queryResult": {
        ...
        "outputContexts": [
            {
                "name": "xxx",
                "parameters": {
                    "date": "2019-11-13T12:00:00+01:00",
                    "date.original": "today",
                    "timespan": "",
                    "timespan.original": ""
                }
            },
            ...
        ],
        ...
    },
    ...
}
mariomor commented 4 years ago

Same here. :)