SendBatchSmsRequest.py 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. from aliyunsdkcore.request import RpcRequest
  20. class SendBatchSmsRequest(RpcRequest):
  21. def __init__(self):
  22. RpcRequest.__init__(self, 'Dysmsapi', '2017-05-25', 'SendBatchSms')
  23. def get_TemplateCode(self):
  24. return self.get_query_params().get('TemplateCode')
  25. def set_TemplateCode(self,TemplateCode):
  26. self.add_query_param('TemplateCode',TemplateCode)
  27. def get_TemplateParamJson(self):
  28. return self.get_query_params().get('TemplateParamJson')
  29. def set_TemplateParamJson(self,TemplateParamJson):
  30. self.add_query_param('TemplateParamJson',TemplateParamJson)
  31. def get_ResourceOwnerAccount(self):
  32. return self.get_query_params().get('ResourceOwnerAccount')
  33. def set_ResourceOwnerAccount(self,ResourceOwnerAccount):
  34. self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount)
  35. def get_SmsUpExtendCodeJson(self):
  36. return self.get_query_params().get('SmsUpExtendCodeJson')
  37. def set_SmsUpExtendCodeJson(self,SmsUpExtendCodeJson):
  38. self.add_query_param('SmsUpExtendCodeJson',SmsUpExtendCodeJson)
  39. def get_ResourceOwnerId(self):
  40. return self.get_query_params().get('ResourceOwnerId')
  41. def set_ResourceOwnerId(self,ResourceOwnerId):
  42. self.add_query_param('ResourceOwnerId',ResourceOwnerId)
  43. def get_SignNameJson(self):
  44. return self.get_query_params().get('SignNameJson')
  45. def set_SignNameJson(self,SignNameJson):
  46. self.add_query_param('SignNameJson',SignNameJson)
  47. def get_OwnerId(self):
  48. return self.get_query_params().get('OwnerId')
  49. def set_OwnerId(self,OwnerId):
  50. self.add_query_param('OwnerId',OwnerId)
  51. def get_PhoneNumberJson(self):
  52. return self.get_query_params().get('PhoneNumberJson')
  53. def set_PhoneNumberJson(self,PhoneNumberJson):
  54. self.add_query_param('PhoneNumberJson',PhoneNumberJson)