(filter *ari.Key)
| 22 | } |
| 23 | |
| 24 | func (m *mailbox) List(filter *ari.Key) ([]*ari.Key, error) { |
| 25 | return m.c.listRequest(&proxy.Request{ |
| 26 | Kind: "MailboxList", |
| 27 | Key: filter, |
| 28 | }) |
| 29 | } |
| 30 | |
| 31 | func (m *mailbox) Data(key *ari.Key) (*ari.MailboxData, error) { |
| 32 | data, err := m.c.dataRequest(&proxy.Request{ |
nothing calls this directly
no test coverage detected