Class ExecuteSqlQueryResponse
A response returned by the connection after executing the sql query.
Implements
Inherited Members
Namespace: Google.Apis.Connectors.v2.Data
Assembly: Google.Apis.Connectors.v2.dll
Syntax
public class ExecuteSqlQueryResponse : 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 execution of the query the response contains results returned by the external system. For example, the result rows of the query are contained in the 'results' Struct list - "results": [ { "field1": "val1", "field2": "val2",.. },.. ] Each Struct row can contain fields any type of like nested Structs or lists.
Declaration
[JsonProperty("results")]
public virtual IList<IDictionary<string, object>> Results { get; set; }
Property Value
Type | Description |
---|---|
IList<IDictionary<string, object>> |