*** id: f3cd7d15-af96-40a5-8062-4193de67bf30 title: CallCollect.DigitsParams slug: /dotnet/reference/calling/call-collect-digits-params max-toc-depth: 3 ---------------- # SignalWire.Relay.Calling.CallCollect.DigitsParams This object represents the parameters specific to digits collecting. ## Constructor The only constructor is the default constructor, properties should all be assigned by initializer or after construction. **Parameters** None **Examples** > Basic Example ```csharp CallCollect collect = new CallCollect { Digits = new CallCollect.DigitsParams { Max = 1 } }; ``` ## Properties | Property | Type | Description | | -------------- | ------- | -------------------------------------------------------------------------------------------------------- | | `Max` | int | The maximum number of digits to collect, must be greater than zero. | | `Terminators` | string | A string of individual characters that can be used to terminate prematurely. | | `DigitTimeout` | double? | The timeout before terminating prematurely if at least one digit was collected.
*Default: 1 second* | ## Methods None ## Events None