Class: Google::Apis::GmailV1::WatchResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GmailV1::WatchResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/gmail_v1/classes.rb,
 generated/google/apis/gmail_v1/representations.rb,
 generated/google/apis/gmail_v1/representations.rb
Overview
Push notification watch response.
Instance Attribute Summary collapse
- 
  
    
      #expiration  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    When Gmail will stop sending notifications for mailbox updates (epoch millis). 
- 
  
    
      #history_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the mailbox's current history record. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ WatchResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of WatchResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ WatchResponse
Returns a new instance of WatchResponse
| 1507 1508 1509 | # File 'generated/google/apis/gmail_v1/classes.rb', line 1507 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#expiration ⇒ Fixnum
When Gmail will stop sending notifications for mailbox updates (epoch millis).
Call watch again before this time to renew the watch.
Corresponds to the JSON property expiration
| 1500 1501 1502 | # File 'generated/google/apis/gmail_v1/classes.rb', line 1500 def expiration @expiration end | 
#history_id ⇒ Fixnum
The ID of the mailbox's current history record.
Corresponds to the JSON property historyId
| 1505 1506 1507 | # File 'generated/google/apis/gmail_v1/classes.rb', line 1505 def history_id @history_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1512 1513 1514 1515 | # File 'generated/google/apis/gmail_v1/classes.rb', line 1512 def update!(**args) @expiration = args[:expiration] if args.key?(:expiration) @history_id = args[:history_id] if args.key?(:history_id) end |