QuerySendDetailsRequest.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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 Dysmsapi\Request\V20170525;
  21. class QuerySendDetailsRequest extends \RpcAcsRequest
  22. {
  23. function __construct()
  24. {
  25. parent::__construct("Dysmsapi", "2017-05-25", "QuerySendDetails");
  26. }
  27. private $sendDate;
  28. private $pageSize;
  29. private $ownerId;
  30. private $resourceOwnerId;
  31. private $phoneNumber;
  32. private $bizId;
  33. private $currentPage;
  34. private $resourceOwnerAccount;
  35. public function getSendDate() {
  36. return $this->sendDate;
  37. }
  38. public function setSendDate($sendDate) {
  39. $this->sendDate = $sendDate;
  40. $this->queryParameters["SendDate"]=$sendDate;
  41. }
  42. public function getPageSize() {
  43. return $this->pageSize;
  44. }
  45. public function setPageSize($pageSize) {
  46. $this->pageSize = $pageSize;
  47. $this->queryParameters["PageSize"]=$pageSize;
  48. }
  49. public function getOwnerId() {
  50. return $this->ownerId;
  51. }
  52. public function setOwnerId($ownerId) {
  53. $this->ownerId = $ownerId;
  54. $this->queryParameters["OwnerId"]=$ownerId;
  55. }
  56. public function getResourceOwnerId() {
  57. return $this->resourceOwnerId;
  58. }
  59. public function setResourceOwnerId($resourceOwnerId) {
  60. $this->resourceOwnerId = $resourceOwnerId;
  61. $this->queryParameters["ResourceOwnerId"]=$resourceOwnerId;
  62. }
  63. public function getPhoneNumber() {
  64. return $this->phoneNumber;
  65. }
  66. public function setPhoneNumber($phoneNumber) {
  67. $this->phoneNumber = $phoneNumber;
  68. $this->queryParameters["PhoneNumber"]=$phoneNumber;
  69. }
  70. public function getBizId() {
  71. return $this->bizId;
  72. }
  73. public function setBizId($bizId) {
  74. $this->bizId = $bizId;
  75. $this->queryParameters["BizId"]=$bizId;
  76. }
  77. public function getCurrentPage() {
  78. return $this->currentPage;
  79. }
  80. public function setCurrentPage($currentPage) {
  81. $this->currentPage = $currentPage;
  82. $this->queryParameters["CurrentPage"]=$currentPage;
  83. }
  84. public function getResourceOwnerAccount() {
  85. return $this->resourceOwnerAccount;
  86. }
  87. public function setResourceOwnerAccount($resourceOwnerAccount) {
  88. $this->resourceOwnerAccount = $resourceOwnerAccount;
  89. $this->queryParameters["ResourceOwnerAccount"]=$resourceOwnerAccount;
  90. }
  91. }