Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ExecuteActionResponse

import type { ExecuteActionResponse } from "https://googleapis.deno.dev/v1/connectors:v2.ts";

Response message for ActionService.ExecuteAction

interface ExecuteActionResponse {
results?: {
[key: string]: any;
}
[]
;
}

§Properties

§
results?: {
[key: string]: any;
}
[]
[src]

In the case of successful invocation of the specified action, the results Struct contains values based on the response of the action invoked. 1. If the action execution produces any entities as a result, they are returned as an array of Structs with the 'key' being the field name and the 'value' being the value of that field in each result row. { 'results': [{'key': 'value'}, ...] }