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

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ WatchResponse

Returns a new instance of WatchResponse



1554
1555
1556
# File 'generated/google/apis/gmail_v1/classes.rb', line 1554

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)


1547
1548
1549
# File 'generated/google/apis/gmail_v1/classes.rb', line 1547

def expiration
  @expiration
end

#history_idFixnum

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

Returns:

  • (Fixnum)


1552
1553
1554
# File 'generated/google/apis/gmail_v1/classes.rb', line 1552

def history_id
  @history_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1559
1560
1561
1562
# File 'generated/google/apis/gmail_v1/classes.rb', line 1559

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