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.
285 286 287 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 285 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
The immutable ID of the draft.
Corresponds to the JSON property id
278 279 280 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 278 def id @id end |
#message ⇒ Google::Apis::GmailV1::Message
An email message.
Corresponds to the JSON property message
283 284 285 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 283 def @message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
290 291 292 293 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 290 def update!(**args) @id = args[:id] if args.key?(:id) @message = args[:message] if args.key?(:message) end |