Guest User

Untitled

a guest
Jan 18th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. if(!conv.surface.capabilities.has('actions.capability.MEDIA_RESPONSE_AUDIO')) {
  2. conv.ask('Sorry, this device does not support audio playback.');
  3. }
  4. else{
  5. conv.ask(new MediaObject({
  6. name: 'Radio one',
  7. url: 'my_streaming_url.mp3',
  8. description: 'A funky Jazz tune',
  9. }));
  10. conv.ask(new Suggestions(['Radio two']));
  11. }
Add Comment
Please, Sign In to add comment