Class: Google::Apis::GmailV1::Draft
- Inherits:
-
Object
- Object
- Google::Apis::GmailV1::Draft
- 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
A draft email in the user's mailbox.
Instance Attribute Summary collapse
-
#id ⇒ String
The immutable ID of the draft.
-
#message ⇒ Google::Apis::GmailV1::Message
An email message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Draft
constructor
A new instance of Draft.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Draft
Returns a new instance of Draft.
150 151 152 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 150 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
The immutable ID of the draft.
Corresponds to the JSON property id
143 144 145 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 143 def id @id end |
#message ⇒ Google::Apis::GmailV1::Message
An email message.
Corresponds to the JSON property message
148 149 150 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 148 def @message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
155 156 157 158 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 155 def update!(**args) @id = args[:id] if args.key?(:id) @message = args[:message] if args.key?(:message) end |