Table of Contents

Class DtmfSettings

Namespace
Vonage.Voice.Nccos
Assembly
Vonage.dll

Configures DTMF input collection settings for an NCCO Input action.

public class DtmfSettings
Inheritance
DtmfSettings
Inherited Members

Properties

MaxDigits

The maximum number of DTMF digits to collect. Range: 1-20. Default is 4.

[JsonProperty("maxDigits")]
public int? MaxDigits { get; set; }

Property Value

int?

SubmitOnHash

Set to true to end input collection when the user presses #, even if fewer than MaxDigits digits were entered.

[JsonProperty("submitOnHash")]
public bool? SubmitOnHash { get; set; }

Property Value

bool?

TimeOut

The number of seconds of inactivity before the input is considered complete. The range is 1-10 seconds. Default is 3.

[JsonProperty("timeOut")]
public int? TimeOut { get; set; }

Property Value

int?