public sealed class CallFunctionResponse : IMessage<CallFunctionResponse>, IEquatable<CallFunctionResponse>, IDeepCloneable<CallFunctionResponse>, IBufferMessage, IMessage
Reference documentation and code samples for the Cloud Functions v1 API class CallFunctionResponse.
Response of CallFunction
method.
Implements
IMessageCallFunctionResponse, IEquatableCallFunctionResponse, IDeepCloneableCallFunctionResponse, IBufferMessage, IMessageNamespace
Google.Cloud.Functions.V1Assembly
Google.Cloud.Functions.V1.dll
Constructors
CallFunctionResponse()
public CallFunctionResponse()
CallFunctionResponse(CallFunctionResponse)
public CallFunctionResponse(CallFunctionResponse other)
Parameter | |
---|---|
Name | Description |
other | CallFunctionResponse |
Properties
Error
public string Error { get; set; }
Either system or user-function generated error. Set if execution was not successful.
Property Value | |
---|---|
Type | Description |
string |
ExecutionId
public string ExecutionId { get; set; }
Execution id of function invocation.
Property Value | |
---|---|
Type | Description |
string |
Result
public string Result { get; set; }
Result populated for successful execution of synchronous function. Will not be populated if function does not return a result through context.
Property Value | |
---|---|
Type | Description |
string |