summaryrefslogtreecommitdiff
path: root/res/ari/resource_playbacks.h
diff options
context:
space:
mode:
Diffstat (limited to 'res/ari/resource_playbacks.h')
-rw-r--r--res/ari/resource_playbacks.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/res/ari/resource_playbacks.h b/res/ari/resource_playbacks.h
index 751be7504..316ee49bd 100644
--- a/res/ari/resource_playbacks.h
+++ b/res/ari/resource_playbacks.h
@@ -39,9 +39,9 @@
#include "asterisk/ari.h"
-/*! \brief Argument struct for ast_ari_playbacks_get() */
+/*! Argument struct for ast_ari_playbacks_get() */
struct ast_ari_playbacks_get_args {
- /*! \brief Playback's id */
+ /*! Playback's id */
const char *playback_id;
};
/*!
@@ -52,9 +52,9 @@ struct ast_ari_playbacks_get_args {
* \param[out] response HTTP response
*/
void ast_ari_playbacks_get(struct ast_variable *headers, struct ast_ari_playbacks_get_args *args, struct ast_ari_response *response);
-/*! \brief Argument struct for ast_ari_playbacks_stop() */
+/*! Argument struct for ast_ari_playbacks_stop() */
struct ast_ari_playbacks_stop_args {
- /*! \brief Playback's id */
+ /*! Playback's id */
const char *playback_id;
};
/*!
@@ -65,11 +65,11 @@ struct ast_ari_playbacks_stop_args {
* \param[out] response HTTP response
*/
void ast_ari_playbacks_stop(struct ast_variable *headers, struct ast_ari_playbacks_stop_args *args, struct ast_ari_response *response);
-/*! \brief Argument struct for ast_ari_playbacks_control() */
+/*! Argument struct for ast_ari_playbacks_control() */
struct ast_ari_playbacks_control_args {
- /*! \brief Playback's id */
+ /*! Playback's id */
const char *playback_id;
- /*! \brief Operation to perform on the playback. */
+ /*! Operation to perform on the playback. */
const char *operation;
};
/*!