| 
									
										
										
										
											2013-04-22 14:58:53 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Asterisk -- An open source telephony toolkit. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2012 - 2013, Digium, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * David M. Lee, II <dlee@digium.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * See http://www.asterisk.org for more information about
 | 
					
						
							|  |  |  |  * the Asterisk project. Please do not directly contact | 
					
						
							|  |  |  |  * any of the maintainers of this project for assistance; | 
					
						
							|  |  |  |  * the project provides a web site, mailing lists and IRC | 
					
						
							|  |  |  |  * channels for your use. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software, distributed under the terms of | 
					
						
							|  |  |  |  * the GNU General Public License Version 2. See the LICENSE file | 
					
						
							|  |  |  |  * at the top of the source tree. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*! \file
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \brief Generated file - declares stubs to be implemented in | 
					
						
							| 
									
										
										
										
											2013-11-08 18:52:19 +00:00
										 |  |  |  * res/ari/resource_playbacks.c | 
					
						
							| 
									
										
										
										
											2013-04-22 14:58:53 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Playback control resources | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \author David M. Lee, II <dlee@digium.com> | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | 
					
						
							|  |  |  |  * !!!!!                               DO NOT EDIT                        !!!!! | 
					
						
							|  |  |  |  * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | 
					
						
							|  |  |  |  * This file is generated by a mustache template. Please see the original | 
					
						
							| 
									
										
										
										
											2013-07-27 23:11:02 +00:00
										 |  |  |  * template in rest-api-templates/ari_resource.h.mustache | 
					
						
							| 
									
										
										
										
											2013-04-22 14:58:53 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-08 18:52:19 +00:00
										 |  |  | #ifndef _ASTERISK_RESOURCE_PLAYBACKS_H
 | 
					
						
							|  |  |  | #define _ASTERISK_RESOURCE_PLAYBACKS_H
 | 
					
						
							| 
									
										
										
										
											2013-04-22 14:58:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-27 23:11:02 +00:00
										 |  |  | #include "asterisk/ari.h"
 | 
					
						
							| 
									
										
										
										
											2013-04-22 14:58:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 21:13:46 +00:00
										 |  |  | /*! Argument struct for ast_ari_playbacks_get() */ | 
					
						
							| 
									
										
										
										
											2013-11-08 17:59:16 +00:00
										 |  |  | struct ast_ari_playbacks_get_args { | 
					
						
							| 
									
										
										
										
											2014-07-02 21:13:46 +00:00
										 |  |  | 	/*! Playback's id */ | 
					
						
							| 
									
										
										
										
											2013-04-22 14:58:53 +00:00
										 |  |  | 	const char *playback_id; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | /*!
 | 
					
						
							|  |  |  |  * \brief Get a playback's details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \param headers HTTP headers | 
					
						
							|  |  |  |  * \param args Swagger parameters | 
					
						
							|  |  |  |  * \param[out] response HTTP response | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-11-08 17:59:16 +00:00
										 |  |  | void ast_ari_playbacks_get(struct ast_variable *headers, struct ast_ari_playbacks_get_args *args, struct ast_ari_response *response); | 
					
						
							| 
									
										
										
										
											2014-07-02 21:13:46 +00:00
										 |  |  | /*! Argument struct for ast_ari_playbacks_stop() */ | 
					
						
							| 
									
										
										
										
											2013-11-08 17:59:16 +00:00
										 |  |  | struct ast_ari_playbacks_stop_args { | 
					
						
							| 
									
										
										
										
											2014-07-02 21:13:46 +00:00
										 |  |  | 	/*! Playback's id */ | 
					
						
							| 
									
										
										
										
											2013-04-22 14:58:53 +00:00
										 |  |  | 	const char *playback_id; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | /*!
 | 
					
						
							|  |  |  |  * \brief Stop a playback. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \param headers HTTP headers | 
					
						
							|  |  |  |  * \param args Swagger parameters | 
					
						
							|  |  |  |  * \param[out] response HTTP response | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-11-08 17:59:16 +00:00
										 |  |  | void ast_ari_playbacks_stop(struct ast_variable *headers, struct ast_ari_playbacks_stop_args *args, struct ast_ari_response *response); | 
					
						
							| 
									
										
										
										
											2014-07-02 21:13:46 +00:00
										 |  |  | /*! Argument struct for ast_ari_playbacks_control() */ | 
					
						
							| 
									
										
										
										
											2013-11-08 17:59:16 +00:00
										 |  |  | struct ast_ari_playbacks_control_args { | 
					
						
							| 
									
										
										
										
											2014-07-02 21:13:46 +00:00
										 |  |  | 	/*! Playback's id */ | 
					
						
							| 
									
										
										
										
											2013-04-22 14:58:53 +00:00
										 |  |  | 	const char *playback_id; | 
					
						
							| 
									
										
										
										
											2014-07-02 21:13:46 +00:00
										 |  |  | 	/*! Operation to perform on the playback. */ | 
					
						
							| 
									
										
										
										
											2013-04-22 14:58:53 +00:00
										 |  |  | 	const char *operation; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2014-01-21 14:27:21 +00:00
										 |  |  | /*!
 | 
					
						
							|  |  |  |  * \brief Body parsing function for /playbacks/{playbackId}/control. | 
					
						
							|  |  |  |  * \param body The JSON body from which to parse parameters. | 
					
						
							|  |  |  |  * \param[out] args The args structure to parse into. | 
					
						
							|  |  |  |  * \retval zero on success | 
					
						
							|  |  |  |  * \retval non-zero on failure | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int ast_ari_playbacks_control_parse_body( | 
					
						
							|  |  |  | 	struct ast_json *body, | 
					
						
							|  |  |  | 	struct ast_ari_playbacks_control_args *args); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 14:58:53 +00:00
										 |  |  | /*!
 | 
					
						
							| 
									
										
										
										
											2013-10-11 16:36:00 +00:00
										 |  |  |  * \brief Control a playback. | 
					
						
							| 
									
										
										
										
											2013-04-22 14:58:53 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * \param headers HTTP headers | 
					
						
							|  |  |  |  * \param args Swagger parameters | 
					
						
							|  |  |  |  * \param[out] response HTTP response | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-11-08 17:59:16 +00:00
										 |  |  | void ast_ari_playbacks_control(struct ast_variable *headers, struct ast_ari_playbacks_control_args *args, struct ast_ari_response *response); | 
					
						
							| 
									
										
										
										
											2013-04-22 14:58:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-08 18:52:19 +00:00
										 |  |  | #endif /* _ASTERISK_RESOURCE_PLAYBACKS_H */
 |