Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. value": "?"
  2.  
  3. "slots": [
  4. {
  5. "name": "intValue",
  6. "type": "AMAZON.NUMBER",
  7. },{
  8. "name": "decimalValue",
  9. "type": "AMAZON.NUMBER",
  10. }
  11. ]
  12.  
  13. Add {intValue} dollar {decimalValue} cents to invoice"
  14.  
  15. {
  16. "name": "AddInvoiceValue",
  17. "slots": [
  18. {
  19. "name": "intValue",
  20. "type": "AMAZON.NUMBER"
  21. },
  22. {
  23. "name": "decimalValue",
  24. "type": "AMAZON.NUMBER"
  25. },
  26. {
  27. "name": "currency",
  28. "type": "Currency"
  29. },
  30. {
  31. "name": "cents",
  32. "type": "Cent"
  33. }
  34. ],
  35. "samples": [
  36. "Add {decimalValue} {cents} to invoice",
  37. "Add {intValue} {decimalValue} to invoice",
  38. "Add {intValue} {currency} {decimalValue} to invoice",
  39. "Add {intValue} {currency} to invoice"
  40. ]
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement