|
Asterisk - The Open Source Telephony Project GIT-master-6144b6b
|
#include <resource_channels.h>

Data Fields | |
| const char * | channel_id |
| struct ast_json * | variables |
Argument struct for ast_ari_channels_set_channel_vars()
Definition at line 762 of file resource_channels.h.
| const char* channel_id |
Channel's id
Definition at line 764 of file resource_channels.h.
| struct ast_json* variables |
The "variables" key in the body object holds variable key/value pairs to set on the channel. Each variable value may be either a string or an object containing "value" (string) and optional "report_events" (boolean) to include updates for that variable in channel events (defaults to false). Ex. { "variables": { "CALLERID(name)": "Alice", "Call_State": { "value": "WaitingForAgent", "report_events": true } } }
Definition at line 766 of file resource_channels.h.