Show / Hide Table of Contents

Class CallFunctionResponse

Response of CallFunction method.

Inheritance
object
CallFunctionResponse
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.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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX