class Google::Apis::GmailV1::Delegate
Settings for a delegate. Delegates can read, send, and delete messages, as well as view and add contacts, for the delegator's account. See “Set up mail delegation” for more information about delegates.
Attributes
delegate_email[RW]
The email address of the delegate. Corresponds to the JSON property `delegateEmail` @return [String]
verification_status[RW]
Indicates whether this address has been verified and can act as a delegate for the account. 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 125 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 130 def update!(**args) @delegate_email = args[:delegate_email] if args.key?(:delegate_email) @verification_status = args[:verification_status] if args.key?(:verification_status) end