class Google::Apis::GmailV1::ForwardingAddress
Settings for a forwarding address.
Attributes
forwarding_email[RW]
An email address to which messages can be forwarded. Corresponds to the JSON property `forwardingEmail` @return [String]
verification_status[RW]
Indicates whether this address has been verified and is usable for forwarding. Read-only. Corresponds to the JSON property `verificationStatus` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/gmail_v1/classes.rb, line 317 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 322 def update!(**args) @forwarding_email = args[:forwarding_email] if args.key?(:forwarding_email) @verification_status = args[:verification_status] if args.key?(:verification_status) end