class Google::Apis::PubsubV1::AcknowledgeRequest

Request for the Acknowledge method.

Attributes

ack_ids[RW]

Required. The acknowledgment ID for the messages being acknowledged that was returned by the Pub/Sub system in the `Pull` response. Must not be empty. Corresponds to the JSON property `ackIds` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/pubsub_v1/classes.rb, line 35
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/pubsub_v1/classes.rb, line 40
def update!(**args)
  @ack_ids = args[:ack_ids] if args.key?(:ack_ids)
end