Class: Net::IMAP::Namespaces
- Inherits:
-
Struct
- Object
- Struct
- Net::IMAP::Namespaces
- Defined in:
- lib/net/imap/response_data.rb
Overview
Namespaces represents the data of an untagged NAMESPACE response, returned by IMAP#namespace.
Contains lists of #personal, #shared, and #other namespaces.
Required capability
Requires either NAMESPACE [RFC2342] or IMAP4rev2 capability.
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
494 495 496 |
# File 'lib/net/imap/response_data.rb', line 494 def other @other end |
#personal ⇒ Object
Returns the value of attribute personal
494 495 496 |
# File 'lib/net/imap/response_data.rb', line 494 def personal @personal end |
#shared ⇒ Object
Returns the value of attribute shared
494 495 496 |
# File 'lib/net/imap/response_data.rb', line 494 def shared @shared end |