QuerySendDetailsRequest.php 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. namespace Aliyun\Api\Sms\Request\V20170525;
  3. use Aliyun\Core\RpcAcsRequest;
  4. class QuerySendDetailsRequest extends RpcAcsRequest
  5. {
  6. function __construct()
  7. {
  8. parent::__construct("Dysmsapi", "2017-05-25", "QuerySendDetails");
  9. $this->setMethod("POST");
  10. }
  11. private $sendDate;
  12. private $pageSize;
  13. private $phoneNumber;
  14. private $resourceOwnerAccount;
  15. private $currentPage;
  16. private $bizId;
  17. private $resourceOwnerId;
  18. private $ownerId;
  19. public function getSendDate() {
  20. return $this->sendDate;
  21. }
  22. public function setSendDate($sendDate) {
  23. $this->sendDate = $sendDate;
  24. $this->queryParameters["SendDate"]=$sendDate;
  25. }
  26. public function getPageSize() {
  27. return $this->pageSize;
  28. }
  29. public function setPageSize($pageSize) {
  30. $this->pageSize = $pageSize;
  31. $this->queryParameters["PageSize"]=$pageSize;
  32. }
  33. public function getPhoneNumber() {
  34. return $this->phoneNumber;
  35. }
  36. public function setPhoneNumber($phoneNumber) {
  37. $this->phoneNumber = $phoneNumber;
  38. $this->queryParameters["PhoneNumber"]=$phoneNumber;
  39. }
  40. public function getResourceOwnerAccount() {
  41. return $this->resourceOwnerAccount;
  42. }
  43. public function setResourceOwnerAccount($resourceOwnerAccount) {
  44. $this->resourceOwnerAccount = $resourceOwnerAccount;
  45. $this->queryParameters["ResourceOwnerAccount"]=$resourceOwnerAccount;
  46. }
  47. public function getCurrentPage() {
  48. return $this->currentPage;
  49. }
  50. public function setCurrentPage($currentPage) {
  51. $this->currentPage = $currentPage;
  52. $this->queryParameters["CurrentPage"]=$currentPage;
  53. }
  54. public function getBizId() {
  55. return $this->bizId;
  56. }
  57. public function setBizId($bizId) {
  58. $this->bizId = $bizId;
  59. $this->queryParameters["BizId"]=$bizId;
  60. }
  61. public function getResourceOwnerId() {
  62. return $this->resourceOwnerId;
  63. }
  64. public function setResourceOwnerId($resourceOwnerId) {
  65. $this->resourceOwnerId = $resourceOwnerId;
  66. $this->queryParameters["ResourceOwnerId"]=$resourceOwnerId;
  67. }
  68. public function getOwnerId() {
  69. return $this->ownerId;
  70. }
  71. public function setOwnerId($ownerId) {
  72. $this->ownerId = $ownerId;
  73. $this->queryParameters["OwnerId"]=$ownerId;
  74. }
  75. }