(filter *ari.Key)
| 10 | } |
| 11 | |
| 12 | func (s *storedRecording) List(filter *ari.Key) ([]*ari.Key, error) { |
| 13 | return s.c.listRequest(&proxy.Request{ |
| 14 | Kind: "RecordingStoredList", |
| 15 | Key: filter, |
| 16 | }) |
| 17 | } |
| 18 | |
| 19 | func (s *storedRecording) Get(key *ari.Key) *ari.StoredRecordingHandle { |
| 20 | k, err := s.c.getRequest(&proxy.Request{ |
nothing calls this directly
no test coverage detected