Class: Net::IMAP::ThreadMember

Inherits:
Struct 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)

Method Summary

Methods inherited from Struct

#pretty_print, #pretty_print_cycle, #to_yaml, yaml_new

Instance Attribute Details

- (Object) children

Returns the value of attribute children

Returns:

  • (Object)

    the current value of children



1807
1808
1809
# File 'lib/net/imap.rb', line 1807

def children
  @children
end

- (Object) seqno

Returns the value of attribute seqno

Returns:

  • (Object)

    the current value of seqno



1807
1808
1809
# File 'lib/net/imap.rb', line 1807

def seqno
  @seqno
end