Class: Net::IMAP::MailboxQuota
- Inherits:
-
Struct
- Object
- Struct
- Net::IMAP::MailboxQuota
- Defined in:
- lib/net/imap/response_data.rb
Overview
MailboxQuota represents the data of an untagged QUOTA response.
IMAP#getquota returns an array of MailboxQuota objects.
Net::IMAP#getquotaroot returns an array containing both MailboxQuotaRoot and MailboxQuota objects.
Required capability
Requires QUOTA [RFC2087] capability.
Instance Attribute Summary collapse
-
#mailbox ⇒ Object
Returns the value of attribute mailbox.
-
#quota ⇒ Object
Returns the value of attribute quota.
-
#usage ⇒ Object
Returns the value of attribute usage.
Instance Attribute Details
#mailbox ⇒ Object
Returns the value of attribute mailbox
389 390 391 |
# File 'lib/net/imap/response_data.rb', line 389 def mailbox @mailbox end |
#quota ⇒ Object
Returns the value of attribute quota
389 390 391 |
# File 'lib/net/imap/response_data.rb', line 389 def quota @quota end |
#usage ⇒ Object
Returns the value of attribute usage
389 390 391 |
# File 'lib/net/imap/response_data.rb', line 389 def usage @usage end |