Source code for wirecurly.dialplan.applications.playback

from wirecurly.dialplan.applications import ApplicationBase

[docs]class Playback(ApplicationBase): """The playback application""" def __init__(self, filename): super(Playback, self).__init__('playback') self.filename = filename @property
[docs] def data(self): ''' Filename only returns the file to be played. We cannot make checks of file existence unless we are on the local machine. ''' return self.filename
Read the Docs v: latest
Versions
latest
Downloads
PDF
HTML
Epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.