Class: Google::Apis::PubsubV1::PublishResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::PubsubV1::PublishResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/pubsub_v1/classes.rb,
 generated/google/apis/pubsub_v1/representations.rb,
 generated/google/apis/pubsub_v1/representations.rb
Overview
Response for the Publish method.
Instance Attribute Summary collapse
- 
  
    
      #message_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The server-assigned ID of each published message, in the same order as the messages in the request. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PublishResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of PublishResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PublishResponse
Returns a new instance of PublishResponse
| 422 423 424 | # File 'generated/google/apis/pubsub_v1/classes.rb', line 422 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#message_ids ⇒ Array<String>
The server-assigned ID of each published message, in the same order as
the messages in the request. IDs are guaranteed to be unique within
the topic.
Corresponds to the JSON property messageIds
| 420 421 422 | # File 'generated/google/apis/pubsub_v1/classes.rb', line 420 def @message_ids end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 427 428 429 | # File 'generated/google/apis/pubsub_v1/classes.rb', line 427 def update!(**args) @message_ids = args[:message_ids] if args.key?(:message_ids) end |