class Google::Apis::GmailV1::PopSettings
POP settings for an account.
Attributes
access_window[RW]
The range of messages which are accessible via POP. Corresponds to the JSON property `accessWindow` @return [String]
disposition[RW]
The action that will be executed on a message after it has been fetched via POP. Corresponds to the JSON property `disposition` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/gmail_v1/classes.rb, line 1188 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/gmail_v1/classes.rb, line 1193 def update!(**args) @access_window = args[:access_window] if args.key?(:access_window) @disposition = args[:disposition] if args.key?(:disposition) end