Class: Google::Apis::GmailV1::WatchResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gmail_v1/classes.rb,
lib/google/apis/gmail_v1/representations.rb,
lib/google/apis/gmail_v1/representations.rb

Overview

Push notification watch response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ WatchResponse

Returns a new instance of WatchResponse.



1885
1886
1887
# File 'lib/google/apis/gmail_v1/classes.rb', line 1885

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#expirationFixnum

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

Returns:

  • (Fixnum)


1878
1879
1880
# File 'lib/google/apis/gmail_v1/classes.rb', line 1878

def expiration
  @expiration
end

#history_idFixnum

The ID of the mailbox's current history record. Corresponds to the JSON property historyId

Returns:

  • (Fixnum)


1883
1884
1885
# File 'lib/google/apis/gmail_v1/classes.rb', line 1883

def history_id
  @history_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1890
1891
1892
1893
# File 'lib/google/apis/gmail_v1/classes.rb', line 1890

def update!(**args)
  @expiration = args[:expiration] if args.key?(:expiration)
  @history_id = args[:history_id] if args.key?(:history_id)
end