QueryInterSmsIsoInfoRequest.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. namespace app\common\services\aliyun\Api\Sms\Request\V20170525;
  3. use app\common\services\aliyun\Core\RpcAcsRequest;
  4. class QueryInterSmsIsoInfoRequest extends RpcAcsRequest
  5. {
  6. function __construct()
  7. {
  8. parent::__construct("Dysmsapi", "2017-05-25", "QueryInterSmsIsoInfo");
  9. $this->setMethod("POST");
  10. }
  11. private $resourceOwnerAccount;
  12. private $countryName;
  13. private $resourceOwnerId;
  14. private $ownerId;
  15. public function getResourceOwnerAccount() {
  16. return $this->resourceOwnerAccount;
  17. }
  18. public function setResourceOwnerAccount($resourceOwnerAccount) {
  19. $this->resourceOwnerAccount = $resourceOwnerAccount;
  20. $this->queryParameters["ResourceOwnerAccount"]=$resourceOwnerAccount;
  21. }
  22. public function getCountryName() {
  23. return $this->countryName;
  24. }
  25. public function setCountryName($countryName) {
  26. $this->countryName = $countryName;
  27. $this->queryParameters["CountryName"]=$countryName;
  28. }
  29. public function getResourceOwnerId() {
  30. return $this->resourceOwnerId;
  31. }
  32. public function setResourceOwnerId($resourceOwnerId) {
  33. $this->resourceOwnerId = $resourceOwnerId;
  34. $this->queryParameters["ResourceOwnerId"]=$resourceOwnerId;
  35. }
  36. public function getOwnerId() {
  37. return $this->ownerId;
  38. }
  39. public function setOwnerId($ownerId) {
  40. $this->ownerId = $ownerId;
  41. $this->queryParameters["OwnerId"]=$ownerId;
  42. }
  43. }