(filter *ari.Key)
| 25 | } |
| 26 | |
| 27 | func (c *channel) List(filter *ari.Key) ([]*ari.Key, error) { |
| 28 | return c.c.listRequest(&proxy.Request{ |
| 29 | Kind: "ChannelList", |
| 30 | Key: filter, |
| 31 | }) |
| 32 | } |
| 33 | |
| 34 | func (c *channel) Originate(referenceKey *ari.Key, o ari.OriginateRequest) (*ari.ChannelHandle, error) { |
| 35 | k, err := c.c.createRequest(&proxy.Request{ |
nothing calls this directly
no test coverage detected