Class: Google::Apis::GmailV1::Thread

Inherits:
Object
  • Object
show all
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 collection of messages representing a conversation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Thread

Returns a new instance of Thread



1453
1454
1455
# File 'generated/google/apis/gmail_v1/classes.rb', line 1453

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#history_idFixnum

The ID of the last history record that modified this thread. Corresponds to the JSON property historyId

Returns:

  • (Fixnum)


1436
1437
1438
# File 'generated/google/apis/gmail_v1/classes.rb', line 1436

def history_id
  @history_id
end

#idString

The unique ID of the thread. Corresponds to the JSON property id

Returns:

  • (String)


1441
1442
1443
# File 'generated/google/apis/gmail_v1/classes.rb', line 1441

def id
  @id
end

#messagesArray<Google::Apis::GmailV1::Message>

The list of messages in the thread. Corresponds to the JSON property messages

Returns:



1446
1447
1448
# File 'generated/google/apis/gmail_v1/classes.rb', line 1446

def messages
  @messages
end

#snippetString

A short part of the message text. Corresponds to the JSON property snippet

Returns:

  • (String)


1451
1452
1453
# File 'generated/google/apis/gmail_v1/classes.rb', line 1451

def snippet
  @snippet
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1458
1459
1460
1461
1462
1463
# File 'generated/google/apis/gmail_v1/classes.rb', line 1458

def update!(**args)
  @history_id = args[:history_id] if args.key?(:history_id)
  @id = args[:id] if args.key?(:id)
  @messages = args[:messages] if args.key?(:messages)
  @snippet = args[:snippet] if args.key?(:snippet)
end