Show / Hide Table of Contents

Class CallFunctionResponse

Response of CallFunction method.

Inheritance
System.Object
CallFunctionResponse
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudFunctions.v1.Data
Assembly: Google.Apis.CloudFunctions.v1.dll
Syntax
public class CallFunctionResponse : IDirectResponseSchema

Properties

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
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ExecutionId

Execution id of function invocation.

Declaration
[JsonProperty("executionId")]
public virtual string ExecutionId { get; set; }
Property Value
Type Description
System.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
System.String

Implements

IDirectResponseSchema
In This Article
Back to top