tencentcloud-sdk-python-domain 3.0.1129__tar.gz → 3.0.1133__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.
- {tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/setup.py +1 -1
- {tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/tencentcloud/domain/v20180808/models.py +48 -0
- {tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/tencentcloud_sdk_python_domain.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-domain-3.0.1133/tencentcloud_sdk_python_domain.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-domain-3.0.1129/tencentcloud_sdk_python_domain.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/README.rst +0 -0
- {tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/setup.cfg +0 -0
- {tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/tencentcloud/domain/__init__.py +0 -0
- {tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/tencentcloud/domain/v20180808/__init__.py +0 -0
- {tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/tencentcloud/domain/v20180808/domain_client.py +0 -0
- {tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/tencentcloud/domain/v20180808/errorcodes.py +0 -0
- {tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/tencentcloud_sdk_python_domain.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/tencentcloud_sdk_python_domain.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/tencentcloud_sdk_python_domain.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/setup.py
RENAMED
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-domain',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1133"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Domain SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -2739,6 +2739,14 @@ class DescribeReservedBidInfoResponse(AbstractModel):
|
|
|
2739
2739
|
:param _BidList: 竞价详细数据
|
|
2740
2740
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2741
2741
|
:type BidList: list of ReserveBidInfo
|
|
2742
|
+
:param _BidEndTime: 竞价结束时间
|
|
2743
|
+
:type BidEndTime: str
|
|
2744
|
+
:param _IsUp: 是否领先
|
|
2745
|
+
:type IsUp: bool
|
|
2746
|
+
:param _NextPrice: 下次出价金额
|
|
2747
|
+
:type NextPrice: int
|
|
2748
|
+
:param _Status: 状态:1. 等待竞价 2.竞价中 3.竞价结束
|
|
2749
|
+
:type Status: int
|
|
2742
2750
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2743
2751
|
:type RequestId: str
|
|
2744
2752
|
"""
|
|
@@ -2746,6 +2754,10 @@ class DescribeReservedBidInfoResponse(AbstractModel):
|
|
|
2746
2754
|
self._Price = None
|
|
2747
2755
|
self._UpUser = None
|
|
2748
2756
|
self._BidList = None
|
|
2757
|
+
self._BidEndTime = None
|
|
2758
|
+
self._IsUp = None
|
|
2759
|
+
self._NextPrice = None
|
|
2760
|
+
self._Status = None
|
|
2749
2761
|
self._RequestId = None
|
|
2750
2762
|
|
|
2751
2763
|
@property
|
|
@@ -2780,6 +2792,38 @@ class DescribeReservedBidInfoResponse(AbstractModel):
|
|
|
2780
2792
|
def BidList(self, BidList):
|
|
2781
2793
|
self._BidList = BidList
|
|
2782
2794
|
|
|
2795
|
+
@property
|
|
2796
|
+
def BidEndTime(self):
|
|
2797
|
+
return self._BidEndTime
|
|
2798
|
+
|
|
2799
|
+
@BidEndTime.setter
|
|
2800
|
+
def BidEndTime(self, BidEndTime):
|
|
2801
|
+
self._BidEndTime = BidEndTime
|
|
2802
|
+
|
|
2803
|
+
@property
|
|
2804
|
+
def IsUp(self):
|
|
2805
|
+
return self._IsUp
|
|
2806
|
+
|
|
2807
|
+
@IsUp.setter
|
|
2808
|
+
def IsUp(self, IsUp):
|
|
2809
|
+
self._IsUp = IsUp
|
|
2810
|
+
|
|
2811
|
+
@property
|
|
2812
|
+
def NextPrice(self):
|
|
2813
|
+
return self._NextPrice
|
|
2814
|
+
|
|
2815
|
+
@NextPrice.setter
|
|
2816
|
+
def NextPrice(self, NextPrice):
|
|
2817
|
+
self._NextPrice = NextPrice
|
|
2818
|
+
|
|
2819
|
+
@property
|
|
2820
|
+
def Status(self):
|
|
2821
|
+
return self._Status
|
|
2822
|
+
|
|
2823
|
+
@Status.setter
|
|
2824
|
+
def Status(self, Status):
|
|
2825
|
+
self._Status = Status
|
|
2826
|
+
|
|
2783
2827
|
@property
|
|
2784
2828
|
def RequestId(self):
|
|
2785
2829
|
return self._RequestId
|
|
@@ -2799,6 +2843,10 @@ class DescribeReservedBidInfoResponse(AbstractModel):
|
|
|
2799
2843
|
obj = ReserveBidInfo()
|
|
2800
2844
|
obj._deserialize(item)
|
|
2801
2845
|
self._BidList.append(obj)
|
|
2846
|
+
self._BidEndTime = params.get("BidEndTime")
|
|
2847
|
+
self._IsUp = params.get("IsUp")
|
|
2848
|
+
self._NextPrice = params.get("NextPrice")
|
|
2849
|
+
self._Status = params.get("Status")
|
|
2802
2850
|
self._RequestId = params.get("RequestId")
|
|
2803
2851
|
|
|
2804
2852
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1133
|
tencentcloud-sdk-python-domain-3.0.1129/tencentcloud_sdk_python_domain.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1129
|
{tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-domain-3.0.1129 → tencentcloud-sdk-python-domain-3.0.1133}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|