Class PullResponse
Response for the Pull
method.
Implements
Inherited Members
Namespace: Google.Apis.Pubsub.v1.Data
Assembly: Google.Apis.Pubsub.v1.dll
Syntax
public class PullResponse : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
ReceivedMessages
Optional. Received Pub/Sub messages. The list will be empty if there are no more messages available in the
backlog, or if no messages could be returned before the request timeout. For JSON, the response can be
entirely empty. The Pub/Sub system may return fewer than the maxMessages
requested even if there are more
messages available in the backlog.
Declaration
[JsonProperty("receivedMessages")]
public virtual IList<ReceivedMessage> ReceivedMessages { get; set; }
Property Value
Type | Description |
---|---|
IList<ReceivedMessage> |