Class: Net::IMAP::Namespaces
- Inherits:
-
Struct
- Object
- Struct
- Net::IMAP::Namespaces
- 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
-
#other ⇒ Object
Returns the value of attribute other.
-
#personal ⇒ Object
Returns the value of attribute personal.
-
#shared ⇒ Object
Returns the value of attribute shared.
Instance Attribute Details
#other ⇒ Object
Returns the value of attribute other
522 523 524 |
# File 'lib/net/imap/response_data.rb', line 522 def other @other end |
#personal ⇒ Object
Returns the value of attribute personal
522 523 524 |
# File 'lib/net/imap/response_data.rb', line 522 def personal @personal end |
#shared ⇒ Object
Returns the value of attribute shared
522 523 524 |
# File 'lib/net/imap/response_data.rb', line 522 def shared @shared end |