Show / Hide Table of Contents

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
object
StreamResponse
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.WorkspaceEvents.v1.Data
Assembly: Google.Apis.WorkspaceEvents.v1.dll
Syntax
public class StreamResponse : IDirectResponseSchema

Properties

ArtifactUpdate

Declaration
[JsonProperty("artifactUpdate")]
public virtual TaskArtifactUpdateEvent ArtifactUpdate { get; set; }
Property Value
Type Description
TaskArtifactUpdateEvent

ETag

The ETag of the item.

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

Message

Declaration
[JsonProperty("message")]
public virtual Message Message { get; set; }
Property Value
Type Description
Message

StatusUpdate

Declaration
[JsonProperty("statusUpdate")]
public virtual TaskStatusUpdateEvent StatusUpdate { get; set; }
Property Value
Type Description
TaskStatusUpdateEvent

Task

Declaration
[JsonProperty("task")]
public virtual Task Task { get; set; }
Property Value
Type Description
Task

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX