classPlace(location.QPlace):"""Represents a set of data about a place."""def__bool__(self):returnnotself.isEmpty()def__setitem__(self,index:str,val:location.QPlaceAttribute|None):ifvalisNone:val=location.PlaceAttribute()self.setExtendedAttribute(index,val)def__getitem__(self,index:str)->location.PlaceAttribute:attr=self.extendedAttribute(index)returnlocation.PlaceAttribute(attr)defget_categories(self)->list[location.PlaceCategory]:return[location.PlaceCategory(i)foriinself.categories()]defget_contact_details(self,contact_type:str)->list[location.PlaceContactDetail]:return[location.PlaceContactDetail(i)foriinself.contactDetails(contact_type)]defset_content(self,typ:str,value:dict[int,location.QPlaceContent]):self.setContent(location.placecontent.TYPE.get_enum_value(typ),value)defget_content(self,typ:str)->dict[int,location.QPlaceContent]:returnself.content(location.placecontent.TYPE.get_enum_value(typ))defget_icon(self)->location.PlaceIcon|None:icon=self.icon()returnNoneificon.isEmpty()elselocation.PlaceIcon(icon)defget_location(self)->positioning.GeoLocation:returnpositioning.GeoLocation(self.location())defget_primary_website(self)->core.Url:returncore.Url(self.primaryWebsite())defget_ratings(self)->location.PlaceRatings:returnlocation.PlaceRatings(self.ratings())defget_supplier(self)->location.PlaceSupplier:returnlocation.PlaceSupplier(self.supplier())defget_visibility(self)->location.VisibilityStr:"""Return visibility. Returns: Visibility """returnlocation.VISIBILITY.inverse[self.visibility()]