Class CallFunctionResponse
Response of CallFunction
method.
Implements
Inherited Members
Namespace: Google.Apis.CloudFunctions.v1.Data
Assembly: Google.Apis.CloudFunctions.v1.dll
Syntax
public class CallFunctionResponse : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Error
Either system or user-function generated error. Set if execution was not successful.
Declaration
[JsonProperty("error")]
public virtual string Error { get; set; }
Property Value
Type | Description |
---|---|
string |
ExecutionId
Execution id of function invocation.
Declaration
[JsonProperty("executionId")]
public virtual string ExecutionId { get; set; }
Property Value
Type | Description |
---|---|
string |
Result
Result populated for successful execution of synchronous function. Will not be populated if function does not return a result through context.
Declaration
[JsonProperty("result")]
public virtual string Result { get; set; }
Property Value
Type | Description |
---|---|
string |