QueryInterSmsIsoInfoRequest.php 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. /*
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  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. namespace Aliyun\Api\Sms\Request\V20170525;
  21. use Aliyun\Core\RpcAcsRequest;
  22. class QueryInterSmsIsoInfoRequest extends RpcAcsRequest
  23. {
  24. function __construct()
  25. {
  26. parent::__construct("Dysmsapi", "2017-05-25", "QueryInterSmsIsoInfo");
  27. $this->setMethod("POST");
  28. }
  29. private $resourceOwnerAccount;
  30. private $countryName;
  31. private $resourceOwnerId;
  32. private $ownerId;
  33. public function getResourceOwnerAccount() {
  34. return $this->resourceOwnerAccount;
  35. }
  36. public function setResourceOwnerAccount($resourceOwnerAccount) {
  37. $this->resourceOwnerAccount = $resourceOwnerAccount;
  38. $this->queryParameters["ResourceOwnerAccount"]=$resourceOwnerAccount;
  39. }
  40. public function getCountryName() {
  41. return $this->countryName;
  42. }
  43. public function setCountryName($countryName) {
  44. $this->countryName = $countryName;
  45. $this->queryParameters["CountryName"]=$countryName;
  46. }
  47. public function getResourceOwnerId() {
  48. return $this->resourceOwnerId;
  49. }
  50. public function setResourceOwnerId($resourceOwnerId) {
  51. $this->resourceOwnerId = $resourceOwnerId;
  52. $this->queryParameters["ResourceOwnerId"]=$resourceOwnerId;
  53. }
  54. public function getOwnerId() {
  55. return $this->ownerId;
  56. }
  57. public function setOwnerId($ownerId) {
  58. $this->ownerId = $ownerId;
  59. $this->queryParameters["OwnerId"]=$ownerId;
  60. }
  61. }