def__init__(self,type_:TYPE,id_:str=None,from_:str=None,to:str=None,**extra:str)->None:""" Create an IQ stanza Args: type (IQ.TYPE): A value of IQ.TYPE enum indicating the type of the iq stanza id (str): Optional string identifier of the stanza from_ (str): The sender user to (str): The receiver user """attrib={k:vfork,vin(("id",id_),("from",from_),("to",to),("type",type_.value))ifvisnotNone}ifattrib.get('id')isNone:attrib['id']=str(uuid4())super().__init__('iq',attrib,**extra)