Skip to content

Commit b86a86a

Browse files
authored
Merge pull request #10885 from get-itips/patch-414
Fix ForceListenMenuEnabled to SwitchParameter
2 parents 993becb + c45d7e7 commit b86a86a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

skype/skype-ps/skype/New-CsAutoAttendantCallFlow.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Use the New-CsAutoAttendantCallFlow cmdlet to create a new call flow.
1818
## SYNTAX
1919

2020
```powershell
21-
New-CsAutoAttendantCallFlow -Name <String> -Menu <Object> [-Greetings <List>] [-Tenant <Guid>] [-ForceListenMenuEnabled <Boolean>] [<CommonParameters>]
21+
New-CsAutoAttendantCallFlow -Name <String> -Menu <Object> [-Greetings <List>] [-Tenant <Guid>] [-ForceListenMenuEnabled] [<CommonParameters>]
2222
```
2323

2424
## DESCRIPTION
@@ -41,7 +41,7 @@ This example creates a new call flow that renders the "Default Menu" menu.
4141
$menuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign."
4242
$menu = New-CsAutoAttendantMenu -Name "Default Menu" -Prompts $menuPrompt -EnableDialByName
4343
$greeting = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Welcome to Contoso!"
44-
$callFlow = New-CsAutoAttendantCallFlow -Name "Default Call Flow" -Menu $menu -Greetings $greeting -ForceListenMenuEnabled $True
44+
$callFlow = New-CsAutoAttendantCallFlow -Name "Default Call Flow" -Menu $menu -Greetings $greeting -ForceListenMenuEnabled
4545
```
4646

4747
This example creates a new call flow that plays a greeting before rendering the "Default Menu" menu with Force listen menu enabled.
@@ -119,10 +119,10 @@ Accept wildcard characters: False
119119

120120
### -ForceListenMenuEnabled
121121

122-
If True, DTMF and speech inputs will not be processed while the greeting or menu prompt is playing. It will enforce callers to listen to all menu options before making a selection.
122+
If specified, DTMF and speech inputs will not be processed while the greeting or menu prompt is playing. It will enforce callers to listen to all menu options before making a selection.
123123

124124
```yaml
125-
Type: Boolean
125+
Type: SwitchParameter
126126
Parameter Sets: (All)
127127
Aliases:
128128
Applicable: Skype for Business Online

0 commit comments

Comments
 (0)