(key *ari.Key, val string)
| 52 | } |
| 53 | |
| 54 | func (a *asteriskVariables) Set(key *ari.Key, val string) (err error) { |
| 55 | return a.c.commandRequest(&proxy.Request{ |
| 56 | Kind: "AsteriskVariableSet", |
| 57 | Key: key, |
| 58 | AsteriskVariableSet: &proxy.AsteriskVariableSet{ |
| 59 | Value: val, |
| 60 | }, |
| 61 | }) |
| 62 | } |