Class ModifyAckDeadlineRequest
Request for the ModifyAckDeadline method.
Implements
Inherited Members
Namespace: Google.Apis.Pubsub.v1beta2.Data
Assembly: Google.Apis.Pubsub.v1beta2.dll
Syntax
public class ModifyAckDeadlineRequest : IDirectResponseSchema
Properties
AckDeadlineSeconds
The new ack deadline with respect to the time this request was sent to the Pub/Sub system. Must be >=
0. For example, if the value is 10, the new ack deadline will expire 10 seconds after the
ModifyAckDeadline
call was made. Specifying zero may immediately make the message available for another
pull request.
Declaration
[JsonProperty("ackDeadlineSeconds")]
public virtual int? AckDeadlineSeconds { get; set; }
Property Value
Type | Description |
---|---|
int? |
AckId
The acknowledgment ID. Either this or ack_ids must be populated, but not both.
Declaration
[JsonProperty("ackId")]
public virtual string AckId { get; set; }
Property Value
Type | Description |
---|---|
string |
AckIds
List of acknowledgment IDs.
Declaration
[JsonProperty("ackIds")]
public virtual IList<string> AckIds { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |