Bump to 1.3.1
[slixmpp.git] / sleekxmpp / plugins / xep_0196 / stanza.py
blob571c89d7330d461732cb4434e9908329880d0ff2
1 """
2 SleekXMPP: The Sleek XMPP Library
3 Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
4 This file is part of SleekXMPP.
6 See the file LICENSE for copying permission.
7 """
9 from sleekxmpp.xmlstream import ElementBase, ET
12 class UserGaming(ElementBase):
14 name = 'gaming'
15 namespace = 'urn:xmpp:gaming:0'
16 plugin_attrib = 'gaming'
17 interfaces = set(['character_name', 'character_profile', 'name',
18 'level', 'server_address', 'server_name', 'uri'])
19 sub_interfaces = interfaces