11 lines
		
	
	
		
			231 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			231 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from typing import Set, ClassVar
 | |
| 
 | |
| from slixmpp.xmlstream import ElementBase
 | |
| 
 | |
| 
 | |
| class Search(ElementBase):
 | |
|     namespace = "jabber:iq:search"
 | |
|     name = "query"
 | |
|     plugin_attrib = "search"
 | |
|     interfaces: ClassVar[Set[str]] = set()
 | 
