alibabacloud-iqs20241111 1.6.2__tar.gz → 1.6.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/ChangeLog.md +3 -0
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/PKG-INFO +1 -1
- alibabacloud_iqs20241111-1.6.3/alibabacloud_iqs20241111/__init__.py +1 -0
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111/models.py +42 -0
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/PKG-INFO +1 -1
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/setup.py +1 -1
- alibabacloud_iqs20241111-1.6.2/alibabacloud_iqs20241111/__init__.py +0 -1
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/LICENSE +0 -0
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/MANIFEST.in +0 -0
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/README-CN.md +0 -0
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/README.md +0 -0
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111/client.py +0 -0
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/SOURCES.txt +0 -0
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/dependency_links.txt +0 -0
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/requires.txt +0 -0
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/top_level.txt +0 -0
- {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.6.3'
|
{alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111/models.py
RENAMED
|
@@ -995,6 +995,39 @@ class GlobalSearchResult(TeaModel):
|
|
|
995
995
|
return self
|
|
996
996
|
|
|
997
997
|
|
|
998
|
+
class LocationInfo(TeaModel):
|
|
999
|
+
def __init__(
|
|
1000
|
+
self,
|
|
1001
|
+
city: str = None,
|
|
1002
|
+
ip: str = None,
|
|
1003
|
+
):
|
|
1004
|
+
self.city = city
|
|
1005
|
+
self.ip = ip
|
|
1006
|
+
|
|
1007
|
+
def validate(self):
|
|
1008
|
+
pass
|
|
1009
|
+
|
|
1010
|
+
def to_map(self):
|
|
1011
|
+
_map = super().to_map()
|
|
1012
|
+
if _map is not None:
|
|
1013
|
+
return _map
|
|
1014
|
+
|
|
1015
|
+
result = dict()
|
|
1016
|
+
if self.city is not None:
|
|
1017
|
+
result['city'] = self.city
|
|
1018
|
+
if self.ip is not None:
|
|
1019
|
+
result['ip'] = self.ip
|
|
1020
|
+
return result
|
|
1021
|
+
|
|
1022
|
+
def from_map(self, m: dict = None):
|
|
1023
|
+
m = m or dict()
|
|
1024
|
+
if m.get('city') is not None:
|
|
1025
|
+
self.city = m.get('city')
|
|
1026
|
+
if m.get('ip') is not None:
|
|
1027
|
+
self.ip = m.get('ip')
|
|
1028
|
+
return self
|
|
1029
|
+
|
|
1030
|
+
|
|
998
1031
|
class ReadPageBodyReadability(TeaModel):
|
|
999
1032
|
def __init__(
|
|
1000
1033
|
self,
|
|
@@ -1724,6 +1757,7 @@ class UnifiedSearchInput(TeaModel):
|
|
|
1724
1757
|
contents: RequestContents = None,
|
|
1725
1758
|
engine_type: str = None,
|
|
1726
1759
|
location: str = None,
|
|
1760
|
+
location_info: LocationInfo = None,
|
|
1727
1761
|
query: str = None,
|
|
1728
1762
|
time_range: str = None,
|
|
1729
1763
|
):
|
|
@@ -1732,12 +1766,15 @@ class UnifiedSearchInput(TeaModel):
|
|
|
1732
1766
|
self.contents = contents
|
|
1733
1767
|
self.engine_type = engine_type
|
|
1734
1768
|
self.location = location
|
|
1769
|
+
self.location_info = location_info
|
|
1735
1770
|
self.query = query
|
|
1736
1771
|
self.time_range = time_range
|
|
1737
1772
|
|
|
1738
1773
|
def validate(self):
|
|
1739
1774
|
if self.contents:
|
|
1740
1775
|
self.contents.validate()
|
|
1776
|
+
if self.location_info:
|
|
1777
|
+
self.location_info.validate()
|
|
1741
1778
|
|
|
1742
1779
|
def to_map(self):
|
|
1743
1780
|
_map = super().to_map()
|
|
@@ -1755,6 +1792,8 @@ class UnifiedSearchInput(TeaModel):
|
|
|
1755
1792
|
result['engineType'] = self.engine_type
|
|
1756
1793
|
if self.location is not None:
|
|
1757
1794
|
result['location'] = self.location
|
|
1795
|
+
if self.location_info is not None:
|
|
1796
|
+
result['locationInfo'] = self.location_info.to_map()
|
|
1758
1797
|
if self.query is not None:
|
|
1759
1798
|
result['query'] = self.query
|
|
1760
1799
|
if self.time_range is not None:
|
|
@@ -1774,6 +1813,9 @@ class UnifiedSearchInput(TeaModel):
|
|
|
1774
1813
|
self.engine_type = m.get('engineType')
|
|
1775
1814
|
if m.get('location') is not None:
|
|
1776
1815
|
self.location = m.get('location')
|
|
1816
|
+
if m.get('locationInfo') is not None:
|
|
1817
|
+
temp_model = LocationInfo()
|
|
1818
|
+
self.location_info = temp_model.from_map(m['locationInfo'])
|
|
1777
1819
|
if m.get('query') is not None:
|
|
1778
1820
|
self.query = m.get('query')
|
|
1779
1821
|
if m.get('timeRange') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.6.2'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111/client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|