Class ExecuteActionResponse
Response message for ActionService.ExecuteAction
Implements
Inherited Members
Namespace: Google.Apis.Connectors.v2.Data
Assembly: Google.Apis.Connectors.v2.dll
Syntax
public class ExecuteActionResponse : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Results
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'}, ...] }
Declaration
[JsonProperty("results")]
public virtual IList<IDictionary<string, object>> Results { get; set; }
Property Value
Type | Description |
---|---|
IList<IDictionary<string, object>> |