Class: Net::IMAP::Namespaces

Inherits:
Struct
  • Object
show all
Defined in:
lib/net/imap/response_data.rb

Overview

Net::IMAP::Namespaces represents a NAMESPACE server response, which contains lists of #personal, #shared, and #other namespaces.

Net::IMAP#namespace returns a Namespaces object.

Instance Attribute Summary collapse

Instance Attribute Details

#otherObject

Returns the value of attribute other

Returns:

  • (Object)

    the current value of other



522
523
524
# File 'lib/net/imap/response_data.rb', line 522

def other
  @other
end

#personalObject

Returns the value of attribute personal

Returns:

  • (Object)

    the current value of personal



522
523
524
# File 'lib/net/imap/response_data.rb', line 522

def personal
  @personal
end

#sharedObject

Returns the value of attribute shared

Returns:

  • (Object)

    the current value of shared



522
523
524
# File 'lib/net/imap/response_data.rb', line 522

def shared
  @shared
end