Class: Net::IMAP::MailboxQuotaRoot
- Inherits:
-
Struct
- Object
- Struct
- Net::IMAP::MailboxQuotaRoot
- Defined in:
- lib/net/imap/response_data.rb
Overview
Net::IMAP::MailboxQuotaRoot represents part of the GETQUOTAROOT response. (GETQUOTAROOT can also return Net::IMAP::MailboxQuota.)
quotaroot_response ::= "QUOTAROOT" SPACE astring *(SPACE astring)
Fields:
- mailbox
-
The mailbox with the associated quota.
- quotaroots
-
Zero or more quotaroots that affect the quota on the specified mailbox.
Instance Attribute Summary collapse
-
#mailbox ⇒ Object
Returns the value of attribute mailbox.
-
#quotaroots ⇒ Object
Returns the value of attribute quotaroots.
Instance Attribute Details
#mailbox ⇒ Object
Returns the value of attribute mailbox
168 169 170 |
# File 'lib/net/imap/response_data.rb', line 168 def mailbox @mailbox end |
#quotaroots ⇒ Object
Returns the value of attribute quotaroots
168 169 170 |
# File 'lib/net/imap/response_data.rb', line 168 def quotaroots @quotaroots end |