Files
slixmpp/slixmpp/plugins/xep_0070/stanza.py
2016-08-19 23:48:29 +02:00

18 lines
392 B
Python

"""
Slixmpp: The Slick XMPP Library
Copyright (C) 2015 Emmanuel Gil Peyrot
This file is part of Slixmpp.
See the file LICENSE for copying permission.
"""
from slixmpp.xmlstream import ElementBase
class Confirm(ElementBase):
name = 'confirm'
namespace = 'http://jabber.org/protocol/http-auth'
plugin_attrib = 'confirm'
interfaces = {'id', 'url', 'method'}