Natural Numbers

Natural Number support for VoiceInterface Objects allows a number like 235 to be spoken as "two hundred thirty five" or "two hundred and thirty five" instead of just "two three five".

Natural numbers are available when the following conditions are all true:

  • GetValue intent
  • English and Spanish languages
  • Maximum three digit numbers (up to 999)
  • Android devices

Natural Numbers are implemented by adding a new argument (arg17) to the getDigits intent. DevKit 1.5 or greater is required. The entries for this argument are:

  • 1 = Enable natural Numbers.
  • 0= Disable Natural Numbers (default)
// Instruction getDigits (Base)
instructionNumber,getDigits,args1,args2,…,arg30
// Instruction with natural numbers enabled(New)
instructionNumber,getDigits,args1,args2,…,args17, 1,…,args30
// Instruction with natural numbers disabled(New)
instructionNumber,getDigits,args1,args2,…,args17, 0,…, args30