Source code for wirecurly.dialplan.applications.bridge

from wirecurly.dialplan.applications import ApplicationBase

[docs]class Bridge(ApplicationBase): """Bridge application""" def __init__(self, dialstring): super(Bridge, self).__init__('bridge') self.dialstring = dialstring @property
[docs] def data(self): ''' Data is the whole dialstring ''' return self.dialstring
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.