Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. intentMap.set("PlantInfo_DeviceTypeList", buildStaticHandler(agent => {
  2.     return {
  3.         text: `Los tipos de equipos son`,
  4.         speech: `Los tipos de equipos son`,
  5.         responseType: "list",
  6.         resultList: [{
  7.             "label": "PPC",
  8.             "selectionPayload": "PPC"
  9.         },
  10.         {
  11.             "label": "inversor",
  12.             "selectionPayload": "inversor"
  13.         },
  14.         {
  15.             "label": "sensor de temperatura del módulo",
  16.             "selectionPayload": "sensor de temperatura del módulo"
  17.         },
  18.         {
  19.             "label": "sensor de irradiancia",
  20.             "selectionPayload": "sensor de irradiancia"
  21.         }],
  22.         "selectionEvent": "DEVICE_TYPE_SELECTED",
  23.         "selectionKey": "deviceType"
  24.     };
  25. }));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement