Skip to content

Commit 9784270

Browse files
committed
BSSOPENAPI SDK Auto Released By xiaocun.zxc,Version:1.2.4
发布日志: 1, This is an example of release-log. 2, Please strictly follow this format to edit in English. 3, Format:Number + , + Space + Description
1 parent 9b6f9f8 commit 9784270

File tree

6 files changed

+74
-27
lines changed

6 files changed

+74
-27
lines changed

aliyun-python-sdk-bssopenapi/ChangeLog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2019-04-22 Version: 1.2.4
2+
1, This is an example of release-log.
3+
2, Please strictly follow this format to edit in English.
4+
3, Format:Number + , + Space + Description
5+
16
2019-03-19 Version: 1.2.2
27
1, add query user oms data api
38

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.2.2"
1+
__version__ = "1.2.4"

aliyun-python-sdk-bssopenapi/aliyunsdkbssopenapi/request/v20171214/QueryEvaluateListRequest.py

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,6 @@ def set_BizTypeLists(self,BizTypeLists):
4949
if BizTypeLists[i] is not None:
5050
self.add_query_param('BizTypeList.' + str(i + 1) , BizTypeLists[i]);
5151

52-
def get_callerBid(self):
53-
return self.get_query_params().get('callerBid')
54-
55-
def set_callerBid(self,callerBid):
56-
self.add_query_param('callerBid',callerBid)
57-
5852
def get_Type(self):
5953
return self.get_query_params().get('Type')
6054

@@ -113,10 +107,4 @@ def get_StartBizTime(self):
113107
return self.get_query_params().get('StartBizTime')
114108

115109
def set_StartBizTime(self,StartBizTime):
116-
self.add_query_param('StartBizTime',StartBizTime)
117-
118-
def get_callerUid(self):
119-
return self.get_query_params().get('callerUid')
120-
121-
def set_callerUid(self,callerUid):
122-
self.add_query_param('callerUid',callerUid)
110+
self.add_query_param('StartBizTime',StartBizTime)

aliyun-python-sdk-bssopenapi/aliyunsdkbssopenapi/request/v20171214/QueryInvoicingCustomerListRequest.py

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,8 @@ class QueryInvoicingCustomerListRequest(RpcRequest):
2323
def __init__(self):
2424
RpcRequest.__init__(self, 'BssOpenApi', '2017-12-14', 'QueryInvoicingCustomerList')
2525

26-
def get_callerBid(self):
27-
return self.get_query_params().get('callerBid')
28-
29-
def set_callerBid(self,callerBid):
30-
self.add_query_param('callerBid',callerBid)
31-
3226
def get_OwnerId(self):
3327
return self.get_query_params().get('OwnerId')
3428

3529
def set_OwnerId(self,OwnerId):
36-
self.add_query_param('OwnerId',OwnerId)
37-
38-
def get_callerUid(self):
39-
return self.get_query_params().get('callerUid')
40-
41-
def set_callerUid(self,callerUid):
42-
self.add_query_param('callerUid',callerUid)
30+
self.add_query_param('OwnerId',OwnerId)
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class SubscribeBillToOSSRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'BssOpenApi', '2017-12-14', 'SubscribeBillToOSS')
25+
26+
def get_SubscribeType(self):
27+
return self.get_query_params().get('SubscribeType')
28+
29+
def set_SubscribeType(self,SubscribeType):
30+
self.add_query_param('SubscribeType',SubscribeType)
31+
32+
def get_SubscribeBucket(self):
33+
return self.get_query_params().get('SubscribeBucket')
34+
35+
def set_SubscribeBucket(self,SubscribeBucket):
36+
self.add_query_param('SubscribeBucket',SubscribeBucket)
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class UnsubscribeBillToOSSRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'BssOpenApi', '2017-12-14', 'UnsubscribeBillToOSS')
25+
26+
def get_SubscribeType(self):
27+
return self.get_query_params().get('SubscribeType')
28+
29+
def set_SubscribeType(self,SubscribeType):
30+
self.add_query_param('SubscribeType',SubscribeType)

0 commit comments

Comments
 (0)