Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Answer incoming call and set an optional maximum duration.

## **Properties**

<ParamField path="answer" type="object" toc={true}>
<ParamField path="answer" type="object" required={true} toc={true}>
An object that accepts the following properties.
</ParamField>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Stop an audio stream started with [`stream`](/docs/swml/reference/calling/stream

## **Properties**

<ParamField path="stop_stream" type="object" toc={true}>
<ParamField path="stop_stream" type="object" required={true} toc={true}>
An object that accepts the following properties.
</ParamField>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Only one transcription can be active on a call at a time. Starting another while

## **Properties**

<ParamField path="transcribe" type="object" toc={true}>
<ParamField path="transcribe" type="object" required={true} toc={true}>
An object that accepts the following properties.
</ParamField>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Stop the transcription currently running on the call, started with [`transcribe`

## **Properties**

<ParamField path="transcribe_stop" type="object" toc={true}>
<ParamField path="transcribe_stop" type="object" required={true} toc={true}>
An empty object.
</ParamField>

Expand Down
Loading