DescribeWhitelistResponse.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. // This file is auto-generated, don't edit it. Thanks.
  3. namespace AlibabaCloud\SDK\Cloudauth\V20190307\Models;
  4. use AlibabaCloud\SDK\Cloudauth\V20190307\Models\DescribeWhitelistResponse\items;
  5. use AlibabaCloud\Tea\Model;
  6. class DescribeWhitelistResponse extends Model
  7. {
  8. /**
  9. * @var string
  10. */
  11. public $requestId;
  12. /**
  13. * @var int
  14. */
  15. public $totalCount;
  16. /**
  17. * @var int
  18. */
  19. public $currentPage;
  20. /**
  21. * @var int
  22. */
  23. public $pageSize;
  24. /**
  25. * @var items[]
  26. */
  27. public $items;
  28. protected $_name = [
  29. 'requestId' => 'RequestId',
  30. 'totalCount' => 'TotalCount',
  31. 'currentPage' => 'CurrentPage',
  32. 'pageSize' => 'PageSize',
  33. 'items' => 'Items',
  34. ];
  35. public function validate()
  36. {
  37. Model::validateRequired('requestId', $this->requestId, true);
  38. Model::validateRequired('totalCount', $this->totalCount, true);
  39. Model::validateRequired('currentPage', $this->currentPage, true);
  40. Model::validateRequired('pageSize', $this->pageSize, true);
  41. Model::validateRequired('items', $this->items, true);
  42. }
  43. public function toMap()
  44. {
  45. $res = [];
  46. if (null !== $this->requestId) {
  47. $res['RequestId'] = $this->requestId;
  48. }
  49. if (null !== $this->totalCount) {
  50. $res['TotalCount'] = $this->totalCount;
  51. }
  52. if (null !== $this->currentPage) {
  53. $res['CurrentPage'] = $this->currentPage;
  54. }
  55. if (null !== $this->pageSize) {
  56. $res['PageSize'] = $this->pageSize;
  57. }
  58. if (null !== $this->items) {
  59. $res['Items'] = [];
  60. if (null !== $this->items && \is_array($this->items)) {
  61. $n = 0;
  62. foreach ($this->items as $item) {
  63. $res['Items'][$n++] = null !== $item ? $item->toMap() : $item;
  64. }
  65. }
  66. }
  67. return $res;
  68. }
  69. /**
  70. * @param array $map
  71. *
  72. * @return DescribeWhitelistResponse
  73. */
  74. public static function fromMap($map = [])
  75. {
  76. $model = new self();
  77. if (isset($map['RequestId'])) {
  78. $model->requestId = $map['RequestId'];
  79. }
  80. if (isset($map['TotalCount'])) {
  81. $model->totalCount = $map['TotalCount'];
  82. }
  83. if (isset($map['CurrentPage'])) {
  84. $model->currentPage = $map['CurrentPage'];
  85. }
  86. if (isset($map['PageSize'])) {
  87. $model->pageSize = $map['PageSize'];
  88. }
  89. if (isset($map['Items'])) {
  90. if (!empty($map['Items'])) {
  91. $model->items = [];
  92. $n = 0;
  93. foreach ($map['Items'] as $item) {
  94. $model->items[$n++] = null !== $item ? items::fromMap($item) : $item;
  95. }
  96. }
  97. }
  98. return $model;
  99. }
  100. }