|
| 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 | +# |
| 10 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 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 | +import json |
| 22 | + |
| 23 | +class SyncAppInstanceForPartnerRequest(RpcRequest): |
| 24 | + |
| 25 | + def __init__(self): |
| 26 | + RpcRequest.__init__(self, 'WebsiteBuild', '2025-04-29', 'SyncAppInstanceForPartner') |
| 27 | + self.set_protocol_type('https') |
| 28 | + self.set_method('POST') |
| 29 | + |
| 30 | + def get_AppInstance(self): # Struct |
| 31 | + return self.get_query_params().get('AppInstance') |
| 32 | + |
| 33 | + def set_AppInstance(self, AppInstance): # Struct |
| 34 | + self.add_query_param("AppInstance", json.dumps(AppInstance)) |
| 35 | + def get_SourceBizId(self): # String |
| 36 | + return self.get_query_params().get('SourceBizId') |
| 37 | + |
| 38 | + def set_SourceBizId(self, SourceBizId): # String |
| 39 | + self.add_query_param('SourceBizId', SourceBizId) |
| 40 | + def get_Operator(self): # String |
| 41 | + return self.get_query_params().get('Operator') |
| 42 | + |
| 43 | + def set_Operator(self, Operator): # String |
| 44 | + self.add_query_param('Operator', Operator) |
| 45 | + def get_EventType(self): # String |
| 46 | + return self.get_query_params().get('EventType') |
| 47 | + |
| 48 | + def set_EventType(self, EventType): # String |
| 49 | + self.add_query_param('EventType', EventType) |
| 50 | + def get_SourceType(self): # String |
| 51 | + return self.get_query_params().get('SourceType') |
| 52 | + |
| 53 | + def set_SourceType(self, SourceType): # String |
| 54 | + self.add_query_param('SourceType', SourceType) |
0 commit comments