Show / Hide Table of Contents

Class ExecuteActionResponse

Response message for ActionService.ExecuteAction

Inheritance
object
ExecuteActionResponse
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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>>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX