Class: Net::IMAP::ThreadMember
- Inherits:
-
Struct
- Object
- Struct
- Net::IMAP::ThreadMember
- Defined in:
- lib/net/imap/response_data.rb
Overview
Net::IMAP::ThreadMember represents a thread-node returned by Net::IMAP#thread.
Fields:
- seqno
-
The sequence number of this message.
- children
-
An array of Net::IMAP::ThreadMember objects for mail items that are children of this in the thread.
Instance Attribute Summary collapse
-
#children ⇒ Object
Returns the value of attribute children.
-
#seqno ⇒ Object
Returns the value of attribute seqno.
Instance Attribute Details
#children ⇒ Object
Returns the value of attribute children
349 350 351 |
# File 'lib/net/imap/response_data.rb', line 349 def children @children end |
#seqno ⇒ Object
Returns the value of attribute seqno
349 350 351 |
# File 'lib/net/imap/response_data.rb', line 349 def seqno @seqno end |