Class: Net::IMAP::ThreadMember

Inherits:
Struct
  • Object
show all
Defined in:
lib/net/imap.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

Instance Attribute Details

#childrenObject

Returns the value of attribute children

Returns:

  • (Object)

    the current value of children



1718
1719
1720
# File 'lib/net/imap.rb', line 1718

def children
  @children
end

#seqnoObject

Returns the value of attribute seqno

Returns:

  • (Object)

    the current value of seqno



1718
1719
1720
# File 'lib/net/imap.rb', line 1718

def seqno
  @seqno
end