What I said was 0.8.15 was really 0.8.16
[theonering] / src / tp / _generated / Connection_Interface_Balance.py
1 # -*- coding: utf-8 -*-
2 # Generated from the Telepathy spec
3 """Copyright © 2009 Collabora Ltd.
4 Copyright © 2009 Nokia Corporation
5
6     This library is free software; you can redistribute it and/or
7       modify it under the terms of the GNU Lesser General Public
8       License as published by the Free Software Foundation; either
9       version 2.1 of the License, or (at your option) any later version.
10
11     This library is distributed in the hope that it will be useful,
12       but WITHOUT ANY WARRANTY; without even the implied warranty of
13       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14       Lesser General Public License for more details.
15
16     You should have received a copy of the GNU Lesser General Public
17       License along with this library; if not, write to the Free Software
18       Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19       USA.
20   
21 """
22
23 import dbus.service
24
25
26 class ConnectionInterfaceBalance(dbus.service.Interface):
27     """\
28       In many real-time communication services the user can pay for certain
29         services, typically calls to the
30         PSTN,
31         in advance. In (at least) Skype, it's possible to query the current
32         balance in a machine-readable way.
33     """
34
35     def __init__(self):
36         self._interfaces.add('org.freedesktop.Telepathy.Connection.Interface.Balance')
37
38     @dbus.service.signal('org.freedesktop.Telepathy.Connection.Interface.Balance', signature='(ius)')
39     def BalanceChanged(self, Balance):
40         """
41         Emitted when the user's balance has changed.
42       
43         """
44         pass
45