Class: Google::Apis::GmailV1::Draft
- Inherits:
-
Object
- Object
- Google::Apis::GmailV1::Draft
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gmail_v1/classes.rb,
lib/google/apis/gmail_v1/representations.rb,
lib/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.
297 298 299 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 297 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
The immutable ID of the draft.
Corresponds to the JSON property id
290 291 292 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 290 def id @id end |
#message ⇒ Google::Apis::GmailV1::Message
An email message.
Corresponds to the JSON property message
295 296 297 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 295 def @message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
302 303 304 305 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 302 def update!(**args) @id = args[:id] if args.key?(:id) @message = args[:message] if args.key?(:message) end |