Skip to main content

results

Creates, updates, deletes, gets or lists a results resource.

Overview

Nameresults
TypeResource
Idgoogle.dialogflow.results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestring
conversationTurnsarray
environmentstring
testResultstring (TEST_RESULT_UNSPECIFIED, PASSED, FAILED)
testTimestring (google-datetime)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_agents_test_cases_results_getselectprojectsId, locationsId, agentsId, testCasesId, resultsId
projects_locations_agents_test_cases_results_listselectprojectsId, locationsId, agentsId, testCasesIdpageSize, filter, pageToken

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
agentsIdstring
locationsIdstring
projectsIdstring
resultsIdstring
testCasesIdstring
filterstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

Successful response

SELECT
name,
conversationTurns,
environment,
testResult,
testTime
FROM google.dialogflow.results
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND agentsId = '{{ agentsId }}' -- required
AND testCasesId = '{{ testCasesId }}' -- required
AND resultsId = '{{ resultsId }}' -- required
;