Class StreamResponse
The stream response for a message. The stream should be one of the following sequences: If the response is a
message, the stream should contain one, and only one, message and then close If the response is a task
lifecycle, the first response should be a Task object followed by zero or more TaskStatusUpdateEvents and
TaskArtifactUpdateEvents. The stream should complete when the Task if in an interrupted or terminal state. A
stream that ends before these conditions are met are
Inheritance
StreamResponse
Assembly: Google.Apis.WorkspaceEvents.v1.dll
Syntax
public class StreamResponse : IDirectResponseSchema
Properties
ArtifactUpdate
Declaration
[JsonProperty("artifactUpdate")]
public virtual TaskArtifactUpdateEvent ArtifactUpdate { get; set; }
Property Value
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
Message
Declaration
[JsonProperty("message")]
public virtual Message Message { get; set; }
Property Value
StatusUpdate
Declaration
[JsonProperty("statusUpdate")]
public virtual TaskStatusUpdateEvent StatusUpdate { get; set; }
Property Value
Task
Declaration
[JsonProperty("task")]
public virtual Task Task { get; set; }
Property Value
Implements