123456789_123456789_123456789_123456789_123456789_

Class: Net::IMAP::ThreadMember

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Struct
Instance Chain:
self, Struct
Inherits: Struct
  • Object
Defined in: lib/net/imap.rb

Overview

ThreadMember represents a thread-node returned by #thread.

Fields:

seqno

The sequence number of this message.

children

An array of ThreadMember objects for mail items that are children of this in the thread.

Instance Attribute Summary

Instance Attribute Details

#children (rw)

ThreadMember represents a thread-node returned by Net::IMAP#thread.

Fields:

seqno

The sequence number of this message.

children

An array of ThreadMember objects for mail items that are children of this in the thread.

[ GitHub ]

  
# File 'lib/net/imap.rb', line 1996

ThreadMember = Struct.new(:seqno, :children)

#seqno (rw)

ThreadMember represents a thread-node returned by Net::IMAP#thread.

Fields:

seqno

The sequence number of this message.

children

An array of ThreadMember objects for mail items that are children of this in the thread.

[ GitHub ]

  
# File 'lib/net/imap.rb', line 1996

ThreadMember = Struct.new(:seqno, :children)