Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 854 Bytes

SendDigits.md

File metadata and controls

22 lines (16 loc) · 854 Bytes

Freeclimb::SendDigits

Properties

Name Type Description Notes
digits String String containing the digits to be played. The string cannot be empty and can include any digit, plus `#`, or `*`, and allows embedding specification for delay or pause between the output of individual digits.
pause_ms Integer Pause between digits in milliseconds. Valid values are 100-1000 milliseconds and will be adjusted by FreeClimb to satisfy the constraint. [optional]
privacy_mode Boolean Parameter `privacyMode` will not log the `text` as required by PCI compliance. [optional]

Example

require 'freeclimb'

instance = Freeclimb::SendDigits.new(
  digits: null,
  pause_ms: null,
  privacy_mode: null
)